Update Partner App
sagemaker_update_partner_app | R Documentation |
Updates all of the SageMaker Partner AI Apps in an account¶
Description¶
Updates all of the SageMaker Partner AI Apps in an account.
Usage¶
sagemaker_update_partner_app(Arn, MaintenanceConfig, Tier,
ApplicationConfig, EnableIamSessionBasedIdentity, ClientToken, Tags)
Arguments¶
Arn |
[required] The ARN of the SageMaker Partner AI App to update. |
MaintenanceConfig |
Maintenance configuration settings for the SageMaker Partner AI App. |
Tier |
Indicates the instance type and size of the cluster attached to the SageMaker Partner AI App. |
ApplicationConfig |
Configuration settings for the SageMaker Partner AI App. |
EnableIamSessionBasedIdentity |
When set to |
ClientToken |
A unique token that guarantees that the call to this API is idempotent. |
Tags |
Each tag consists of a key and an optional value. Tag keys must be unique per resource. |
Value¶
A list with the following syntax:
list(
Arn = "string"
)
Request syntax¶
svc$update_partner_app(
Arn = "string",
MaintenanceConfig = list(
MaintenanceWindowStart = "string"
),
Tier = "string",
ApplicationConfig = list(
AdminUsers = list(
"string"
),
Arguments = list(
"string"
)
),
EnableIamSessionBasedIdentity = TRUE|FALSE,
ClientToken = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)