Interface CfnVerifiedAccessInstancePropsMixin.VerifiedAccessTrustProviderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVerifiedAccessInstancePropsMixin.VerifiedAccessTrustProviderProperty.Jsii$Proxy
Enclosing class:
CfnVerifiedAccessInstancePropsMixin

@Stability(Stable) public static interface CfnVerifiedAccessInstancePropsMixin.VerifiedAccessTrustProviderProperty extends software.amazon.jsii.JsiiSerializable
A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 VerifiedAccessTrustProviderProperty verifiedAccessTrustProviderProperty = VerifiedAccessTrustProviderProperty.builder()
         .description("description")
         .deviceTrustProviderType("deviceTrustProviderType")
         .trustProviderType("trustProviderType")
         .userTrustProviderType("userTrustProviderType")
         .verifiedAccessTrustProviderId("verifiedAccessTrustProviderId")
         .build();
 

See Also: