AwsTransitGatewayAttachmentAcceptanceArgs
interface AwsTransitGatewayAttachmentAcceptanceArgs {
provider: Provider;
}Optional acceptance behaviour for a VPC attachment.
Example
CODE
import * as aws from '@pulumi/aws';
const transitGatewayOwner = new aws.Provider('transit-gateway-owner', { region: 'eu-west-1' });
const acceptance = { provider: transitGatewayOwner };Properties
provider: Provider
AWS provider authenticated as the Transit Gateway owner that adopts this cross-account attachment.
Remarks
This must be an aliased provider that assumes a role in the Transit Gateway owner account. Omit acceptance for same-account attachments; AWS does not create a separate accepter-side attachment in that case.