CfnOIDCProviderProps
- class aws_cdk.aws_iam.CfnOIDCProviderProps(*, thumbprint_list, client_id_list=None, tags=None, url=None)
Bases:
object
Properties for defining a
CfnOIDCProvider
.- Parameters:
thumbprint_list (
Sequence
[str
]) – A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider .client_id_list (
Optional
[Sequence
[str
]]) –A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider .
tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide .url (
Optional
[str
]) –The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider .
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-oidcprovider.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_iam as iam cfn_oIDCProvider_props = iam.CfnOIDCProviderProps( thumbprint_list=["thumbprintList"], # the properties below are optional client_id_list=["clientIdList"], tags=[CfnTag( key="key", value="value" )], url="url" )
Attributes
- client_id_list
A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object.
For more information, see CreateOpenIDConnectProvider .
- tags
A list of tags that are attached to the specified IAM OIDC provider.
The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide .
- thumbprint_list
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.
For more information, see CreateOpenIDConnectProvider .
- url
The URL that the IAM OIDC provider resource object is associated with.
For more information, see CreateOpenIDConnectProvider .