interface CfnVerifiedAccessInstanceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnVerifiedAccessInstanceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnVerifiedAccessInstanceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnVerifiedAccessInstanceMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnVerifiedAccessInstanceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnVerifiedAccessInstanceMixinProps |
Properties for CfnVerifiedAccessInstancePropsMixin.
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 cfnVerifiedAccessInstanceMixinProps: ec2_mixins.CfnVerifiedAccessInstanceMixinProps = {
cidrEndpointsCustomSubDomain: 'cidrEndpointsCustomSubDomain',
description: 'description',
fipsEnabled: false,
loggingConfigurations: {
cloudWatchLogs: {
enabled: false,
logGroup: 'logGroup',
},
includeTrustContext: false,
kinesisDataFirehose: {
deliveryStream: 'deliveryStream',
enabled: false,
},
logVersion: 'logVersion',
s3: {
bucketName: 'bucketName',
bucketOwner: 'bucketOwner',
enabled: false,
prefix: 'prefix',
},
},
tags: [{
key: 'key',
value: 'value',
}],
verifiedAccessTrustProviderIds: ['verifiedAccessTrustProviderIds'],
verifiedAccessTrustProviders: [{
description: 'description',
deviceTrustProviderType: 'deviceTrustProviderType',
trustProviderType: 'trustProviderType',
userTrustProviderType: 'userTrustProviderType',
verifiedAccessTrustProviderId: 'verifiedAccessTrustProviderId',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cidr | string | The custom subdomain. |
| description? | string | A description for the AWS Verified Access instance. |
| fips | boolean | IResolvable | Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance. |
| logging | IResolvable | Verified | The logging configuration for the Verified Access instances. |
| tags? | Cfn[] | The tags. |
| verified | string[] | The IDs of the AWS Verified Access trust providers. |
| verified | IResolvable | (IResolvable | Verified)[] | The IDs of the AWS Verified Access trust providers. |
cidrEndpointsCustomSubDomain?
Type:
string
(optional)
The custom subdomain.
description?
Type:
string
(optional)
A description for the AWS Verified Access instance.
fipsEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.
loggingConfigurations?
Type:
IResolvable | Verified
(optional)
The logging configuration for the Verified Access instances.
tags?
Type:
Cfn[]
(optional)
The tags.
verifiedAccessTrustProviderIds?
Type:
string[]
(optional)
The IDs of the AWS Verified Access trust providers.
verifiedAccessTrustProviders?
Type:
IResolvable | (IResolvable | Verified)[]
(optional)
The IDs of the AWS Verified Access trust providers.

.NET
Go
Java
Python
TypeScript