Interface CfnOIDCProviderMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOIDCProviderMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.995Z")
@Stability(Stable)
public interface CfnOIDCProviderMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnOIDCProviderPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iam.*;
CfnOIDCProviderMixinProps cfnOIDCProviderMixinProps = CfnOIDCProviderMixinProps.builder()
.clientIdList(List.of("clientIdList"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.thumbprintList(List.of("thumbprintList"))
.url("url")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOIDCProviderMixinPropsstatic final classAn implementation forCfnOIDCProviderMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object.getTags()A list of tags that are attached to the specified IAM OIDC provider.A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.default StringgetUrl()The URL that the IAM OIDC provider resource object is associated with.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientIdList
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 .
- See Also:
-
getTags
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 .
- See Also:
-
getThumbprintList
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.
- See Also:
-
getUrl
The URL that the IAM OIDC provider resource object is associated with.For more information, see CreateOpenIDConnectProvider .
- See Also:
-
builder
- Returns:
- a
CfnOIDCProviderMixinProps.BuilderofCfnOIDCProviderMixinProps
-