Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 46 additions & 10 deletions sample/sagemaker/2017-07-24/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -24901,10 +24901,7 @@
},
"ListClusterNodesResponse":{
"type":"structure",
"required":[
"NextToken",
"ClusterNodeSummaries"
],
"required":["ClusterNodeSummaries"],
"members":{
"NextToken":{
"shape":"NextToken",
Expand Down Expand Up @@ -25009,10 +25006,7 @@
},
"ListClustersResponse":{
"type":"structure",
"required":[
"NextToken",
"ClusterSummaries"
],
"required":["ClusterSummaries"],
"members":{
"NextToken":{
"shape":"NextToken",
Expand Down Expand Up @@ -32027,6 +32021,14 @@
"ml.g6.16xlarge",
"ml.g6.24xlarge",
"ml.g6.48xlarge",
"ml.g6e.xlarge",
"ml.g6e.2xlarge",
"ml.g6e.4xlarge",
"ml.g6e.8xlarge",
"ml.g6e.12xlarge",
"ml.g6e.16xlarge",
"ml.g6e.24xlarge",
"ml.g6e.48xlarge",
"ml.inf2.xlarge",
"ml.inf2.8xlarge",
"ml.inf2.24xlarge",
Expand Down Expand Up @@ -33324,7 +33326,40 @@
"ml.r5d.8xlarge",
"ml.r5d.12xlarge",
"ml.r5d.16xlarge",
"ml.r5d.24xlarge"
"ml.r5d.24xlarge",
"ml.g6.xlarge",
"ml.g6.2xlarge",
"ml.g6.4xlarge",
"ml.g6.8xlarge",
"ml.g6.12xlarge",
"ml.g6.16xlarge",
"ml.g6.24xlarge",
"ml.g6.48xlarge",
"ml.g6e.xlarge",
"ml.g6e.2xlarge",
"ml.g6e.4xlarge",
"ml.g6e.8xlarge",
"ml.g6e.12xlarge",
"ml.g6e.16xlarge",
"ml.g6e.24xlarge",
"ml.g6e.48xlarge",
"ml.m6i.large",
"ml.m6i.xlarge",
"ml.m6i.2xlarge",
"ml.m6i.4xlarge",
"ml.m6i.8xlarge",
"ml.m6i.12xlarge",
"ml.m6i.16xlarge",
"ml.m6i.24xlarge",
"ml.m6i.32xlarge",
"ml.c6i.xlarge",
"ml.c6i.2xlarge",
"ml.c6i.4xlarge",
"ml.c6i.8xlarge",
"ml.c6i.12xlarge",
"ml.c6i.16xlarge",
"ml.c6i.24xlarge",
"ml.c6i.32xlarge"
]
},
"ProcessingJob":{
Expand Down Expand Up @@ -33525,7 +33560,7 @@
},
"KmsKeyId":{
"shape":"KmsKeyId",
"documentation":"<p>The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. <code>KmsKeyId</code> can be an ID of a KMS key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The <code>KmsKeyId</code> is applied to all outputs.</p>"
"documentation":"<p>The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. <code>KmsKeyId</code> can be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. The <code>KmsKeyId</code> is applied to all outputs.</p>"
}
},
"documentation":"<p>Configuration for uploading output from the processing container.</p>"
Expand Down Expand Up @@ -36427,6 +36462,7 @@
"required":[
"InstanceType",
"InstanceCount",
"DurationHours",
"TargetResources"
],
"members":{
Expand Down
2 changes: 1 addition & 1 deletion src/sagemaker_core/main/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7118,7 +7118,7 @@ class ProcessingOutputConfig(Base):
Attributes
----------------------
outputs: An array of outputs configuring the data to upload from the processing container.
kms_key_id: The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, alias of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.
kms_key_id: The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.
"""

outputs: List[ProcessingOutput]
Expand Down