interface DeviceOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVerifiedAccessTrustProvider.DeviceOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessTrustProvider_DeviceOptionsProperty |
Java | software.amazon.awscdk.services.ec2.CfnVerifiedAccessTrustProvider.DeviceOptionsProperty |
Python | aws_cdk.aws_ec2.CfnVerifiedAccessTrustProvider.DeviceOptionsProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVerifiedAccessTrustProvider » 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 { aws_ec2 as ec2 } from 'aws-cdk-lib';
const deviceOptionsProperty: ec2.CfnVerifiedAccessTrustProvider.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