Class: Aws::IAM::Types::TagSAMLProviderRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::TagSAMLProviderRequest
- 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 to which you want to add tags.
-
#tags ⇒ Array<Types::Tag>
The list of tags that you want to attach to the SAML identity provider in IAM.
Instance Attribute Details
#saml_provider_arn ⇒ String
The ARN of the SAML identity provider in IAM to which you want to add 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: _+=,.@-
10547 10548 10549 10550 10551 10552 |
# File 'lib/aws-sdk-iam/types.rb', line 10547 class TagSAMLProviderRequest < Struct.new( :saml_provider_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags that you want to attach to the SAML identity provider in IAM. Each tag consists of a key name and an associated value.
10547 10548 10549 10550 10551 10552 |
# File 'lib/aws-sdk-iam/types.rb', line 10547 class TagSAMLProviderRequest < Struct.new( :saml_provider_arn, :tags) SENSITIVE = [] include Aws::Structure end |