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();
 
  • Method Details

    • getThumbprintList

      @Stability(Stable) @NotNull List<String> getThumbprintList()
      A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object.

      For more information, see CreateOpenIDConnectProvider .

    • getClientIdList

      @Stability(Stable) @Nullable default List<String> 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

      @Stability(Stable) @Nullable default List<CfnTag> 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

      @Stability(Stable) @Nullable default String getUrl()
      The URL that the IAM OIDC provider resource object is associated with.

      For more information, see CreateOpenIDConnectProvider .

    • builder

      @Stability(Stable) static CfnOIDCProviderProps.Builder builder()
      Returns:
      a CfnOIDCProviderProps.Builder of CfnOIDCProviderProps