interface CfnOIDCProviderProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IAM.CfnOIDCProviderProps |
Java | software.amazon.awscdk.services.iam.CfnOIDCProviderProps |
Python | aws_cdk.aws_iam.CfnOIDCProviderProps |
TypeScript | @aws-cdk/aws-iam » CfnOIDCProviderProps |
Properties for defining a CfnOIDCProvider
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iam from '@aws-cdk/aws-iam';
const cfnOIDCProviderProps: iam.CfnOIDCProviderProps = {
thumbprintList: ['thumbprintList'],
// the properties below are optional
clientIdList: ['clientIdList'],
tags: [{
key: 'key',
value: 'value',
}],
url: 'url',
};
Properties
Name | Type | Description |
---|---|---|
thumbprint | string[] | A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. |
client | string[] | A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. |
tags? | Cfn [] | A list of tags that are attached to the specified IAM OIDC provider. |
url? | string | The URL that the IAM OIDC provider resource object is associated with. |
thumbprintList
Type:
string[]
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.
For more information, see CreateOpenIDConnectProvider .
clientIdList?
Type:
string[]
(optional)
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?
Type:
Cfn
[]
(optional)
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?
Type:
string
(optional)
The URL that the IAM OIDC provider resource object is associated with.
For more information, see CreateOpenIDConnectProvider .