import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * AWS::NetworkManager::VpcAttachment Resoruce Type */ export declare class VpcAttachment extends pulumi.CustomResource { /** * Get an existing VpcAttachment resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): VpcAttachment; /** * Returns true if the given object is an instance of VpcAttachment. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is VpcAttachment; /** * Id of the attachment. */ readonly attachmentId: pulumi.Output; /** * The policy rule number associated with the attachment. */ readonly attachmentPolicyRuleNumber: pulumi.Output; /** * Attachment type. */ readonly attachmentType: pulumi.Output; /** * The ARN of a core network for the VPC attachment. */ readonly coreNetworkArn: pulumi.Output; /** * The ID of a core network for the VPC attachment. */ readonly coreNetworkId: pulumi.Output; /** * Creation time of the attachment. */ readonly createdAt: pulumi.Output; /** * The Region where the edge is located. */ readonly edgeLocation: pulumi.Output; /** * Errors from the last modification of the attachment. */ readonly lastModificationErrors: pulumi.Output; /** * The name of the network function group attachment. */ readonly networkFunctionGroupName: pulumi.Output; /** * Vpc options of the attachment. */ readonly options: pulumi.Output; /** * Owner account of the attachment. */ readonly ownerAccountId: pulumi.Output; /** * The attachment to move from one network function group to another. */ readonly proposedNetworkFunctionGroupChange: pulumi.Output; /** * The attachment to move from one segment to another. */ readonly proposedSegmentChange: pulumi.Output; /** * The ARN of the Resource. */ readonly resourceArn: pulumi.Output; /** * Routing policy label */ readonly routingPolicyLabel: pulumi.Output; /** * The name of the segment attachment.. */ readonly segmentName: pulumi.Output; /** * State of the attachment. */ readonly state: pulumi.Output; /** * Subnet Arn list */ readonly subnetArns: pulumi.Output; /** * Tags for the attachment. */ readonly tags: pulumi.Output; /** * Last update time of the attachment. */ readonly updatedAt: pulumi.Output; /** * The ARN of the VPC. */ readonly vpcArn: pulumi.Output; /** * Create a VpcAttachment resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: VpcAttachmentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a VpcAttachment resource. */ export interface VpcAttachmentArgs { /** * The ID of a core network for the VPC attachment. */ coreNetworkId: pulumi.Input; /** * Vpc options of the attachment. */ options?: pulumi.Input; /** * The attachment to move from one network function group to another. */ proposedNetworkFunctionGroupChange?: pulumi.Input; /** * The attachment to move from one segment to another. */ proposedSegmentChange?: pulumi.Input; /** * Routing policy label */ routingPolicyLabel?: pulumi.Input; /** * Subnet Arn list */ subnetArns: pulumi.Input[]>; /** * Tags for the attachment. */ tags?: pulumi.Input[]>; /** * The ARN of the VPC. */ vpcArn: pulumi.Input; }