Get Ml Configuration
| cleanroomsml_get_ml_configuration | R Documentation | 
Returns information about a specific ML configuration¶
Description¶
Returns information about a specific ML configuration.
Usage¶
cleanroomsml_get_ml_configuration(membershipIdentifier)
Arguments¶
| membershipIdentifier | [required] The membership ID of the member that owns the ML configuration you want to return information about. | 
Value¶
A list with the following syntax:
list(
  membershipIdentifier = "string",
  defaultOutputLocation = list(
    destination = list(
      s3Destination = list(
        s3Uri = "string"
      )
    ),
    roleArn = "string"
  ),
  createTime = as.POSIXct(
    "2015-01-01"
  ),
  updateTime = as.POSIXct(
    "2015-01-01"
  )
)
Request syntax¶
svc$get_ml_configuration(
  membershipIdentifier = "string"
)