CfnOIDCProviderProps
- class aws_cdk.aws_iam.CfnOIDCProviderProps(*, client_id_list=None, tags=None, thumbprint_list=None, url=None)
Bases:
object
Properties for defining a
CfnOIDCProvider
.- Parameters:
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 .thumbprint_list (
Optional
[Sequence
[str
]]) –A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see CreateOpenIDConnectProvider . This property is optional. If it is not included, IAM will retrieve and use the top intermediate certificate authority (CA) thumbprint of the OpenID Connect identity provider server certificate.
url (
Optional
[str
]) –The URL that the IAM OIDC provider resource object is associated with. For more information, see CreateOpenIDConnectProvider .
- See:
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. from aws_cdk import aws_iam as iam cfn_oIDCProvider_props = iam.CfnOIDCProviderProps( client_id_list=["clientIdList"], tags=[CfnTag( key="key", value="value" )], thumbprint_list=["thumbprintList"], 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 .
This property is optional. If it is not included, IAM will retrieve and use the top intermediate certificate authority (CA) thumbprint of the OpenID Connect identity provider server certificate.
- url
The URL that the IAM OIDC provider resource object is associated with.
For more information, see CreateOpenIDConnectProvider .