@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
89 lines (88 loc) • 2.9 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* AWS::NetworkManager::TransitGatewayRouteTableAttachment Resource Type definition.
*/
export declare function getTransitGatewayRouteTableAttachment(args: GetTransitGatewayRouteTableAttachmentArgs, opts?: pulumi.InvokeOptions): Promise<GetTransitGatewayRouteTableAttachmentResult>;
export interface GetTransitGatewayRouteTableAttachmentArgs {
/**
* The ID of the attachment.
*/
attachmentId: string;
}
export interface GetTransitGatewayRouteTableAttachmentResult {
/**
* The ID of the attachment.
*/
readonly attachmentId?: string;
/**
* The policy rule number associated with the attachment.
*/
readonly attachmentPolicyRuleNumber?: number;
/**
* The type of attachment.
*/
readonly attachmentType?: string;
/**
* The ARN of a core network for the VPC attachment.
*/
readonly coreNetworkArn?: string;
/**
* The ID of a core network where you're creating a site-to-site VPN attachment.
*/
readonly coreNetworkId?: string;
/**
* Creation time of the attachment.
*/
readonly createdAt?: string;
/**
* The Region where the edge is located.
*/
readonly edgeLocation?: string;
/**
* The name of the network function group attachment.
*/
readonly networkFunctionGroupName?: string;
/**
* Owner account of the attachment.
*/
readonly ownerAccountId?: string;
/**
* The attachment to move from one network function group to another.
*/
readonly proposedNetworkFunctionGroupChange?: outputs.networkmanager.TransitGatewayRouteTableAttachmentProposedNetworkFunctionGroupChange;
/**
* The attachment to move from one segment to another.
*/
readonly proposedSegmentChange?: outputs.networkmanager.TransitGatewayRouteTableAttachmentProposedSegmentChange;
/**
* The ARN of the Resource.
*/
readonly resourceArn?: string;
/**
* The name of the segment that attachment is in.
*/
readonly segmentName?: string;
/**
* The state of the attachment.
*/
readonly state?: string;
/**
* An array of key-value pairs to apply to this resource.
*/
readonly tags?: outputs.Tag[];
/**
* Last update time of the attachment.
*/
readonly updatedAt?: string;
}
/**
* AWS::NetworkManager::TransitGatewayRouteTableAttachment Resource Type definition.
*/
export declare function getTransitGatewayRouteTableAttachmentOutput(args: GetTransitGatewayRouteTableAttachmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransitGatewayRouteTableAttachmentResult>;
export interface GetTransitGatewayRouteTableAttachmentOutputArgs {
/**
* The ID of the attachment.
*/
attachmentId: pulumi.Input<string>;
}