Class CfnCrossAccountAttachmentPropsMixin

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.globalaccelerator.CfnCrossAccountAttachmentPropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:59.657Z") @Stability(Stable) public class CfnCrossAccountAttachmentPropsMixin extends Mixin implements software.constructs.IMixin
Create a cross-account attachment in AWS Global Accelerator .

You create a cross-account attachment to specify the principals who have permission to work with resources in accelerators in their own account. You specify, in the same attachment, the resources that are shared.

A principal can be an AWS account number or the Amazon Resource Name (ARN) for an accelerator. For account numbers that are listed as principals, to work with a resource listed in the attachment, you must sign in to an account specified as a principal. Then, you can work with resources that are listed, with any of your accelerators. If an accelerator ARN is listed in the cross-account attachment as a principal, anyone with permission to make updates to the accelerator can work with resources that are listed in the attachment.

Specify each principal and resource separately. To specify two CIDR address pools, list them individually under Resources , and so on. For a command line operation, for example, you might use a statement like the following:

"Resources": [{"Cidr": "169.254.60.0/24"},{"Cidr": "169.254.59.0/24"}]

For more information, see Working with cross-account attachments and resources in AWS Global Accelerator in the AWS Global Accelerator Developer Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.globalaccelerator.*;
 import software.amazon.awscdk.*;
 IMergeStrategy mergeStrategy;
 CfnCrossAccountAttachmentPropsMixin cfnCrossAccountAttachmentPropsMixin = CfnCrossAccountAttachmentPropsMixin.Builder.create(CfnCrossAccountAttachmentMixinProps.builder()
         .name("name")
         .principals(List.of("principals"))
         .resources(List.of(ResourceProperty.builder()
                 .cidr("cidr")
                 .endpointId("endpointId")
                 .region("region")
                 .build()))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnCrossAccountAttachmentPropsMixin

      protected CfnCrossAccountAttachmentPropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnCrossAccountAttachmentPropsMixin

      protected CfnCrossAccountAttachmentPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnCrossAccountAttachmentPropsMixin

      @Stability(Stable) public CfnCrossAccountAttachmentPropsMixin(@NotNull CfnCrossAccountAttachmentMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::GlobalAccelerator::CrossAccountAttachment.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnCrossAccountAttachmentPropsMixin

      @Stability(Stable) public CfnCrossAccountAttachmentPropsMixin(@NotNull CfnCrossAccountAttachmentMixinProps props)
      Create a mixin to apply properties to AWS::GlobalAccelerator::CrossAccountAttachment.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnCrossAccountAttachmentMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()