aws-cdk-lib.aws_ec2.CfnVerifiedAccessGroupProps

interface CfnVerifiedAccessGroupProps

LanguageType name
.NETAmazon.CDK.AWS.EC2.CfnVerifiedAccessGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnVerifiedAccessGroupProps
Javasoftware.amazon.awscdk.services.ec2.CfnVerifiedAccessGroupProps
Pythonaws_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,
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
verifiedAccessInstanceIdstringThe ID of the AWS Verified Access instance.
description?stringA description for the AWS Verified Access group.
policyDocument?stringThe Verified Access policy document.
policyEnabled?boolean | IResolvableThe status of the Verified Access policy.
tags?CfnTag[]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.


tags?

Type: CfnTag[] (optional)

The tags.