interface CfnCrossAccountAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.GlobalAccelerator.CfnCrossAccountAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglobalaccelerator#CfnCrossAccountAttachmentMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.globalaccelerator.CfnCrossAccountAttachmentMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_globalaccelerator.CfnCrossAccountAttachmentMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_globalaccelerator » CfnCrossAccountAttachmentMixinProps |
Properties for CfnCrossAccountAttachmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_globalaccelerator as globalaccelerator } from '@aws-cdk/cfn-property-mixins';
const cfnCrossAccountAttachmentMixinProps: globalaccelerator.CfnCrossAccountAttachmentMixinProps = {
name: 'name',
principals: ['principals'],
resources: [{
cidr: 'cidr',
endpointId: 'endpointId',
region: 'region',
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the cross-account attachment. |
| principals? | string[] | The principals included in the cross-account attachment. |
| resources? | IResolvable | (IResolvable | Resource)[] | The resources included in the cross-account attachment. |
| tags? | Cfn[] | Add tags for a cross-account attachment. |
name?
Type:
string
(optional)
The name of the cross-account attachment.
principals?
Type:
string[]
(optional)
The principals included in the cross-account attachment.
resources?
Type:
IResolvable | (IResolvable | Resource)[]
(optional)
The resources included in the cross-account attachment.
tags?
Type:
Cfn[]
(optional)
Add tags for a cross-account attachment.
For more information, see Tagging in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .

.NET
Go
Java
Python
TypeScript