Opt-out of custom tag propagation
The process to opt-out of custom tag propagation differs based on if you are opting-out from the console or from the AWS CLI.
Opt-out from the console
The following steps outline how to opt-out of custom tag propagation from the console. You can only opt-out of custom tag propagation from the console by updating an existing domain.
-
Open the Amazon SageMaker AI console at https://console.aws.amazon.com/sagemaker/
. -
On the left navigation, select Admin configurations. Under Admin configurations, select Domains.
-
On the Domains page, select the domain that you want to opt-out of custom tag propagation for.
-
From the Domain details page, select the Domain settings tab.
-
On the Domain settings tab, navigate to Custom Tag Propagation.
-
Select Edit.
-
From the Edit custom tag propagation page, select Automatically propagate custom tags
-
Select Submit.
Opt-out using the AWS CLI
To opt-out of custom tag propagation, set the
TagPropagation
attribute in the CreateDomain and UpdateDomain APIs to DISABLED
as shown in the following example. By
default, the value of this field is DISABLED
. An empty value also defaults
to DISABLED
.
Note
Tag propagation is not automatically turned off for existing applications when
TagPropagation
is set to DISABLED
. Applications must be restarted
for opt-out to take effect for existing apps.
aws sagemaker update-domain \ --domain-id
domain-id
\ --regionregion
\ --tag-propagation DISABLED