interface CfnVerifiedAccessGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.CfnVerifiedAccessGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessGroupProps |
Java | software.amazon.awscdk.services.ec2.CfnVerifiedAccessGroupProps |
Python | aws_cdk.aws_ec2.CfnVerifiedAccessGroupProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnVerifiedAccessGroupProps |
Properties for defining a CfnVerifiedAccessGroup
.
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 cfnVerifiedAccessGroupProps: ec2.CfnVerifiedAccessGroupProps = {
verifiedAccessInstanceId: 'verifiedAccessInstanceId',
// the properties below are optional
description: 'description',
policyDocument: 'policyDocument',
policyEnabled: false,
sseSpecification: {
customerManagedKeyEnabled: false,
kmsKeyArn: 'kmsKeyArn',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
verified | string | The ID of the AWS Verified Access instance. |
description? | string | A description for the AWS Verified Access group. |
policy | string | The Verified Access policy document. |
policy | boolean | IResolvable | The status of the Verified Access policy. |
sse | IResolvable | Sse | The options for additional server side encryption. |
tags? | Cfn [] | The tags. |
verifiedAccessInstanceId
Type:
string
The ID of the AWS Verified Access instance.
description?
Type:
string
(optional)
A description for the AWS Verified Access group.
policyDocument?
Type:
string
(optional)
The Verified Access policy document.
policyEnabled?
Type:
boolean |
IResolvable
(optional)
The status of the Verified Access policy.
sseSpecification?
Type:
IResolvable
|
Sse
(optional)
The options for additional server side encryption.
tags?
Type:
Cfn
[]
(optional)
The tags.