Class: Aws::IAM::Types::TagOpenIDConnectProviderRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::TagOpenIDConnectProviderRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#open_id_connect_provider_arn ⇒ String
The ARN of the OIDC 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 OIDC identity provider in IAM.
Instance Attribute Details
#open_id_connect_provider_arn ⇒ String
The ARN of the OIDC 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: _+=,.@-
10463 10464 10465 10466 10467 10468 |
# File 'lib/aws-sdk-iam/types.rb', line 10463 class TagOpenIDConnectProviderRequest < Struct.new( :open_id_connect_provider_arn, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags that you want to attach to the OIDC identity provider in IAM. Each tag consists of a key name and an associated value.
10463 10464 10465 10466 10467 10468 |
# File 'lib/aws-sdk-iam/types.rb', line 10463 class TagOpenIDConnectProviderRequest < Struct.new( :open_id_connect_provider_arn, :tags) SENSITIVE = [] include Aws::Structure end |