Interface CfnVerifiedAccessInstance.VerifiedAccessTrustProviderProperty

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

@Stability(Stable) public static interface CfnVerifiedAccessInstance.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.services.ec2.*;
 VerifiedAccessTrustProviderProperty verifiedAccessTrustProviderProperty = VerifiedAccessTrustProviderProperty.builder()
         .description("description")
         .deviceTrustProviderType("deviceTrustProviderType")
         .trustProviderType("trustProviderType")
         .userTrustProviderType("userTrustProviderType")
         .verifiedAccessTrustProviderId("verifiedAccessTrustProviderId")
         .build();
 

See Also: