Interface CfnVerifiedAccessTrustProviderProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVerifiedAccessTrustProviderProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.242Z") @Stability(Stable) public interface CfnVerifiedAccessTrustProviderProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnVerifiedAccessTrustProvider.

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.ec2.*;
 CfnVerifiedAccessTrustProviderProps cfnVerifiedAccessTrustProviderProps = CfnVerifiedAccessTrustProviderProps.builder()
         .policyReferenceName("policyReferenceName")
         .trustProviderType("trustProviderType")
         // the properties below are optional
         .description("description")
         .deviceOptions(DeviceOptionsProperty.builder()
                 .tenantId("tenantId")
                 .build())
         .deviceTrustProviderType("deviceTrustProviderType")
         .oidcOptions(OidcOptionsProperty.builder()
                 .authorizationEndpoint("authorizationEndpoint")
                 .clientId("clientId")
                 .clientSecret("clientSecret")
                 .issuer("issuer")
                 .scope("scope")
                 .tokenEndpoint("tokenEndpoint")
                 .userInfoEndpoint("userInfoEndpoint")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .userTrustProviderType("userTrustProviderType")
         .build();
 
  • Method Details

    • getPolicyReferenceName

      @Stability(Stable) @NotNull String getPolicyReferenceName()
      The identifier to be used when working with policy rules.
    • getTrustProviderType

      @Stability(Stable) @NotNull String getTrustProviderType()
      The type of Verified Access trust provider.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description for the AWS Verified Access trust provider.
    • getDeviceOptions

      @Stability(Stable) @Nullable default Object getDeviceOptions()
      The options for device-identity trust provider.
    • getDeviceTrustProviderType

      @Stability(Stable) @Nullable default String getDeviceTrustProviderType()
      The type of device-based trust provider.
    • getOidcOptions

      @Stability(Stable) @Nullable default Object getOidcOptions()
      The options for an OpenID Connect-compatible user-identity trust provider.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The tags.
    • getUserTrustProviderType

      @Stability(Stable) @Nullable default String getUserTrustProviderType()
      The type of user-based trust provider.
    • builder

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