Interface CfnOIDCProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOIDCProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.257Z")
@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() .thumbprintList(List.of("thumbprintList")) // the properties below are optional .clientIdList(List.of("clientIdList")) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .url("url") .build();
-
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
-
getThumbprintList
A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.For more information, see CreateOpenIDConnectProvider .
-
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 .
-
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 .
-
getUrl
The URL that the IAM OIDC provider resource object is associated with.For more information, see CreateOpenIDConnectProvider .
-
builder
- Returns:
- a
CfnOIDCProviderProps.Builder
ofCfnOIDCProviderProps
-