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