@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.724Z") @Stability(value=Stable) public interface CfnOIDCProviderProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnOIDCProviderProps.Builder
A builder for
CfnOIDCProviderProps |
static class |
CfnOIDCProviderProps.Jsii$Proxy
An implementation for
CfnOIDCProviderProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnOIDCProviderProps.Builder |
builder() |
default List<String> |
getClientIdList()
A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object.
|
default List<CfnTag> |
getTags()
A list of tags that are attached to the specified IAM OIDC provider.
|
List<String> |
getThumbprintList()
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.
|
@Stability(value=Stable) @NotNull List<String> getThumbprintList()
For more information, see CreateOpenIDConnectProvider .
@Stability(value=Stable) @Nullable default List<String> getClientIdList()
For more information, see CreateOpenIDConnectProvider .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide .
@Stability(value=Stable) @Nullable default String getUrl()
For more information, see CreateOpenIDConnectProvider .
@Stability(value=Stable) static CfnOIDCProviderProps.Builder builder()
CfnOIDCProviderProps.Builder of CfnOIDCProviderPropsCopyright © 2022. All rights reserved.