interface CfnCrossAccountAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GlobalAccelerator.Mixins.CfnCrossAccountAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglobalaccelerator/mixins#CfnCrossAccountAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.globalaccelerator.mixins.CfnCrossAccountAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_globalaccelerator.mixins.CfnCrossAccountAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_globalaccelerator » mixins » 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 { mixins as globalaccelerator_mixins } from '@aws-cdk/mixins-preview/aws-globalaccelerator';
const cfnCrossAccountAttachmentMixinProps: globalaccelerator_mixins.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