Interface CfnOIDCProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOIDCProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:32.190Z")
@Stability(Stable)
public interface CfnOIDCProviderProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iam.*; CfnOIDCProviderProps cfnOIDCProviderProps = CfnOIDCProviderProps.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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOIDCProviderProps
static final class
An implementation forCfnOIDCProviderProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnOIDCProviderProps.Builder
builder()
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 String
getUrl()
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
CfnOIDCProviderProps.Builder
ofCfnOIDCProviderProps
-