Class: Aws::IAM::Types::UntagSAMLProviderRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::UntagSAMLProviderRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#saml_provider_arn ⇒ String
The ARN of the SAML identity provider in IAM from which you want to remove tags.
-
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings.
Instance Attribute Details
#saml_provider_arn ⇒ String
The ARN of the SAML identity provider in IAM from which you want to remove tags.
This parameter allows (through its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
10918 10919 10920 10921 10922 10923 |
# File 'lib/aws-sdk-iam/types.rb', line 10918 class UntagSAMLProviderRequest < Struct.new( :saml_provider_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |
#tag_keys ⇒ Array<String>
A list of key names as a simple array of strings. The tags with matching keys are removed from the specified SAML identity provider.
10918 10919 10920 10921 10922 10923 |
# File 'lib/aws-sdk-iam/types.rb', line 10918 class UntagSAMLProviderRequest < Struct.new( :saml_provider_arn, :tag_keys) SENSITIVE = [] include Aws::Structure end |