You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sample/sagemaker/2017-07-24/service-2.json
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8957,6 +8957,10 @@
8957
8957
"shape":"AppSecurityGroupManagement",
8958
8958
"documentation":"<p>The entity that creates and manages the required security groups for inter-app communication in <code>VPCOnly</code> mode. Required when <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is provided. If setting up the domain for use with RStudio, this value must be set to <code>Service</code>.</p>"
8959
8959
},
8960
+
"TagPropagation":{
8961
+
"shape":"TagPropagation",
8962
+
"documentation":"<p>Indicates whether custom tag propagation is supported for the domain. Defaults to <code>DISABLED</code>.</p>"
8963
+
},
8960
8964
"DefaultSpaceSettings":{
8961
8965
"shape":"DefaultSpaceSettings",
8962
8966
"documentation":"<p>The default settings used to create a space.</p>"
@@ -13762,6 +13766,10 @@
13762
13766
"shape":"AppSecurityGroupManagement",
13763
13767
"documentation":"<p>The entity that creates and manages the required security groups for inter-app communication in <code>VPCOnly</code> mode. Required when <code>CreateDomain.AppNetworkAccessType</code> is <code>VPCOnly</code> and <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is provided.</p>"
13764
13768
},
13769
+
"TagPropagation":{
13770
+
"shape":"TagPropagation",
13771
+
"documentation":"<p>Indicates whether custom tag propagation is supported for the domain.</p>"
13772
+
},
13765
13773
"DefaultSpaceSettings":{
13766
13774
"shape":"DefaultSpaceSettings",
13767
13775
"documentation":"<p>The default settings used to create a space.</p>"
@@ -35740,6 +35748,13 @@
35740
35748
"max":50,
35741
35749
"min":0
35742
35750
},
35751
+
"TagPropagation":{
35752
+
"type":"string",
35753
+
"enum":[
35754
+
"ENABLED",
35755
+
"DISABLED"
35756
+
]
35757
+
},
35743
35758
"TagValue":{
35744
35759
"type":"string",
35745
35760
"max":256,
@@ -38131,6 +38146,10 @@
38131
38146
"AppNetworkAccessType":{
38132
38147
"shape":"AppNetworkAccessType",
38133
38148
"documentation":"<p>Specifies the VPC used for non-EFS traffic.</p> <ul> <li> <p> <code>PublicInternetOnly</code> - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access.</p> </li> <li> <p> <code>VpcOnly</code> - All Studio traffic is through the specified VPC and subnets.</p> </li> </ul> <p>This configuration can only be modified if there are no apps in the <code>InService</code>, <code>Pending</code>, or <code>Deleting</code> state. The configuration cannot be updated if <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is already set or <code>DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn</code> is provided as part of the same request.</p>"
38149
+
},
38150
+
"TagPropagation":{
38151
+
"shape":"TagPropagation",
38152
+
"documentation":"<p>Indicates whether custom tag propagation is supported for the domain. Defaults to <code>DISABLED</code>.</p>"
Copy file name to clipboardExpand all lines: src/sagemaker_core/main/resources.py
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6147,6 +6147,7 @@ class Domain(Base):
6147
6147
vpc_id: The ID of the Amazon Virtual Private Cloud (VPC) that the domain uses for communication.
6148
6148
kms_key_id: The Amazon Web Services KMS customer managed key used to encrypt the EFS volume attached to the domain.
6149
6149
app_security_group_management: The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided.
6150
+
tag_propagation: Indicates whether custom tag propagation is supported for the domain.
6150
6151
default_space_settings: The default settings used to create a space.
kms_key_id: SageMaker uses Amazon Web Services KMS to encrypt EFS and EBS volumes attached to the domain with an Amazon Web Services managed key by default. For more control, specify a customer managed key.
6291
6294
app_security_group_management: The entity that creates and manages the required security groups for inter-app communication in VPCOnly mode. Required when CreateDomain.AppNetworkAccessType is VPCOnly and DomainSettings.RStudioServerProDomainSettings.DomainExecutionRoleArn is provided. If setting up the domain for use with RStudio, this value must be set to Service.
6295
+
tag_propagation: Indicates whether custom tag propagation is supported for the domain. Defaults to DISABLED.
6292
6296
default_space_settings: The default settings used to create a space.
0 commit comments