How to use untag_saml_provider method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...1332 Removes the specified tags from the role.1333 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/iam.html#IAM.Client.untag_role)1334 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_iam/client.html#untag_role)1335 """1336 def untag_saml_provider(self, *, SAMLProviderArn: str, TagKeys: List[str]) -> None:1337 """1338 Removes the specified tags from the specified Security Assertion Markup Language1339 (SAML) identity provider in IAM.1340 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/iam.html#IAM.Client.untag_saml_provider)1341 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_iam/client.html#untag_saml_provider)1342 """1343 def untag_server_certificate(self, *, ServerCertificateName: str, TagKeys: List[str]) -> None:1344 """1345 Removes the specified tags from the IAM server certificate.1346 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/iam.html#IAM.Client.untag_server_certificate)1347 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_iam/client.html#untag_server_certificate)1348 """1349 def untag_user(self, *, UserName: str, TagKeys: List[str]) -> None:1350 """...

Full Screen

Full Screen

__init__.py

Source:__init__.py Github

copy

Full Screen

...2423 self, context: RequestContext, role_name: roleNameType, tag_keys: tagKeyListType2424 ) -> None:2425 raise NotImplementedError2426 @handler("UntagSAMLProvider")2427 def untag_saml_provider(2428 self, context: RequestContext, saml_provider_arn: arnType, tag_keys: tagKeyListType2429 ) -> None:2430 raise NotImplementedError2431 @handler("UntagServerCertificate")2432 def untag_server_certificate(2433 self,2434 context: RequestContext,2435 server_certificate_name: serverCertificateNameType,2436 tag_keys: tagKeyListType,2437 ) -> None:2438 raise NotImplementedError2439 @handler("UntagUser")2440 def untag_user(2441 self, context: RequestContext, user_name: existingUserNameType, tag_keys: tagKeyListType...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful