Class CfnVerifiedAccessTrustProvider

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.238Z") @Stability(Stable) public class CfnVerifiedAccessTrustProvider extends CfnResource implements IInspectable
A CloudFormation AWS::EC2::VerifiedAccessTrustProvider.

Describes a Verified Access trust provider.

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.*;
 CfnVerifiedAccessTrustProvider cfnVerifiedAccessTrustProvider = CfnVerifiedAccessTrustProvider.Builder.create(this, "MyCfnVerifiedAccessTrustProvider")
         .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();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnVerifiedAccessTrustProvider

      protected CfnVerifiedAccessTrustProvider(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnVerifiedAccessTrustProvider

      protected CfnVerifiedAccessTrustProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnVerifiedAccessTrustProvider

      @Stability(Stable) public CfnVerifiedAccessTrustProvider(@NotNull Construct scope, @NotNull String id, @NotNull CfnVerifiedAccessTrustProviderProps props)
      Create a new AWS::EC2::VerifiedAccessTrustProvider.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrCreationTime

      @Stability(Stable) @NotNull public String getAttrCreationTime()
      The creation time.
    • getAttrLastUpdatedTime

      @Stability(Stable) @NotNull public String getAttrLastUpdatedTime()
      The last updated time.
    • getAttrVerifiedAccessTrustProviderId

      @Stability(Stable) @NotNull public String getAttrVerifiedAccessTrustProviderId()
      The ID of the Verified Access trust provider.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      The tags.
    • getPolicyReferenceName

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

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

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

      @Stability(Stable) public void setTrustProviderType(@NotNull String value)
      The type of Verified Access trust provider.
    • getDescription

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

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description for the AWS Verified Access trust provider.
    • getDeviceOptions

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

      @Stability(Stable) public void setDeviceOptions(@Nullable IResolvable value)
      The options for device-identity trust provider.
    • setDeviceOptions

      @Stability(Stable) public void setDeviceOptions(@Nullable CfnVerifiedAccessTrustProvider.DeviceOptionsProperty value)
      The options for device-identity trust provider.
    • getDeviceTrustProviderType

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

      @Stability(Stable) public void setDeviceTrustProviderType(@Nullable String value)
      The type of device-based trust provider.
    • getOidcOptions

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

      @Stability(Stable) public void setOidcOptions(@Nullable IResolvable value)
      The options for an OpenID Connect-compatible user-identity trust provider.
    • setOidcOptions

      @Stability(Stable) public void setOidcOptions(@Nullable CfnVerifiedAccessTrustProvider.OidcOptionsProperty value)
      The options for an OpenID Connect-compatible user-identity trust provider.
    • getUserTrustProviderType

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

      @Stability(Stable) public void setUserTrustProviderType(@Nullable String value)
      The type of user-based trust provider.