Skip to main content

vpc_attachments

Creates, updates, deletes or gets a vpc_attachment resource or lists vpc_attachments in a region

Overview

Namevpc_attachments
TypeResource
DescriptionAWS::NetworkManager::VpcAttachment Resoruce Type
Idaws.networkmanager.vpc_attachments

Fields

NameDatatypeDescription
core_network_idstringThe ID of a core network for the VPC attachment.
core_network_arnstringThe ARN of a core network for the VPC attachment.
attachment_idstringId of the attachment.
owner_account_idstringOwner account of the attachment.
attachment_typestringAttachment type.
statestringState of the attachment.
edge_locationstringThe Region where the edge is located.
vpc_arnstringThe ARN of the VPC.
resource_arnstringThe ARN of the Resource.
attachment_policy_rule_numberintegerThe policy rule number associated with the attachment.
segment_namestringThe name of the segment attachment..
proposed_segment_changeobjectThe attachment to move from one segment to another.
tagsarrayTags for the attachment.
created_atstringCreation time of the attachment.
updated_atstringLast update time of the attachment.
subnet_arnsarraySubnet Arn list
optionsobjectVpc options of the attachment.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTCoreNetworkId, VpcArn, SubnetArns, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all vpc_attachments in a region.

SELECT
region,
core_network_id,
core_network_arn,
attachment_id,
owner_account_id,
attachment_type,
state,
edge_location,
vpc_arn,
resource_arn,
attachment_policy_rule_number,
segment_name,
proposed_segment_change,
tags,
created_at,
updated_at,
subnet_arns,
options
FROM aws.networkmanager.vpc_attachments
WHERE region = 'us-east-1';

Gets all properties from an individual vpc_attachment.

SELECT
region,
core_network_id,
core_network_arn,
attachment_id,
owner_account_id,
attachment_type,
state,
edge_location,
vpc_arn,
resource_arn,
attachment_policy_rule_number,
segment_name,
proposed_segment_change,
tags,
created_at,
updated_at,
subnet_arns,
options
FROM aws.networkmanager.vpc_attachments
WHERE region = 'us-east-1' AND data__Identifier = '<AttachmentId>';

INSERT example

Use the following StackQL query and manifest file to create a new vpc_attachment resource, using stack-deploy.

/*+ create */
INSERT INTO aws.networkmanager.vpc_attachments (
CoreNetworkId,
VpcArn,
SubnetArns,
region
)
SELECT
'{{ CoreNetworkId }}',
'{{ VpcArn }}',
'{{ SubnetArns }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.networkmanager.vpc_attachments
WHERE data__Identifier = '<AttachmentId>'
AND region = 'us-east-1';

Permissions

To operate on the vpc_attachments resource, the following permissions are required:

Create

networkmanager:CreateVpcAttachment,
networkmanager:GetVpcAttachment,
networkmanager:TagResource,
ec2:DescribeRegions,
iam:CreateServiceLinkedRole

Read

networkmanager:GetVpcAttachment

Update

networkmanager:UpdateVpcAttachment,
networkmanager:GetVpcAttachment,
networkmanager:ListTagsForResource,
networkmanager:TagResource,
networkmanager:UntagResource,
ec2:DescribeRegions

Delete

networkmanager:DeleteAttachment,
networkmanager:GetVpcAttachment,
networkmanager:UntagResource,
ec2:DescribeRegions

List

networkmanager:ListAttachments