CfnVerifiedAccessGroupProps

class aws_cdk.aws_ec2.CfnVerifiedAccessGroupProps(*, verified_access_instance_id, description=None, policy_document=None, policy_enabled=None, sse_specification=None, tags=None)

Bases: object

Properties for defining a CfnVerifiedAccessGroup.

Parameters:
  • verified_access_instance_id (str) – The ID of the AWS Verified Access instance.

  • description (Optional[str]) – A description for the AWS Verified Access group.

  • policy_document (Optional[str]) – The Verified Access policy document.

  • policy_enabled (Union[bool, IResolvable, None]) – The status of the Verified Access policy.

  • sse_specification (Union[IResolvable, SseSpecificationProperty, Dict[str, Any], None]) – The options for additional server side encryption.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ec2 as ec2

cfn_verified_access_group_props = ec2.CfnVerifiedAccessGroupProps(
    verified_access_instance_id="verifiedAccessInstanceId",

    # the properties below are optional
    description="description",
    policy_document="policyDocument",
    policy_enabled=False,
    sse_specification=ec2.CfnVerifiedAccessGroup.SseSpecificationProperty(
        customer_managed_key_enabled=False,
        kms_key_arn="kmsKeyArn"
    ),
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

A description for the AWS Verified Access group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html#cfn-ec2-verifiedaccessgroup-description

policy_document

The Verified Access policy document.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html#cfn-ec2-verifiedaccessgroup-policydocument

policy_enabled

The status of the Verified Access policy.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html#cfn-ec2-verifiedaccessgroup-policyenabled

sse_specification

The options for additional server side encryption.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html#cfn-ec2-verifiedaccessgroup-ssespecification

tags

The tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html#cfn-ec2-verifiedaccessgroup-tags

verified_access_instance_id

The ID of the AWS Verified Access instance.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessgroup.html#cfn-ec2-verifiedaccessgroup-verifiedaccessinstanceid