interface DeviceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVerifiedAccessTrustProviderPropsMixin.DeviceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVerifiedAccessTrustProviderPropsMixin_DeviceOptionsProperty |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVerifiedAccessTrustProviderPropsMixin.DeviceOptionsProperty |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVerifiedAccessTrustProviderPropsMixin.DeviceOptionsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVerifiedAccessTrustProviderPropsMixin » DeviceOptionsProperty |
Describes the options for an AWS Verified Access device-identity based trust provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const deviceOptionsProperty: ec2_mixins.CfnVerifiedAccessTrustProviderPropsMixin.DeviceOptionsProperty = {
publicSigningKeyUrl: 'publicSigningKeyUrl',
tenantId: 'tenantId',
};
Properties
| Name | Type | Description |
|---|---|---|
| public | string | The URL AWS Verified Access will use to verify the authenticity of the device tokens. |
| tenant | string | The ID of the tenant application with the device-identity provider. |
publicSigningKeyUrl?
Type:
string
(optional)
The URL AWS Verified Access will use to verify the authenticity of the device tokens.
tenantId?
Type:
string
(optional)
The ID of the tenant application with the device-identity provider.

.NET
Go
Java
Python
TypeScript