Interface CfnCrossAccountAttachment.ResourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCrossAccountAttachment.ResourceProperty.Jsii$Proxy
Enclosing class:
CfnCrossAccountAttachment

@Stability(Stable) public static interface CfnCrossAccountAttachment.ResourceProperty extends software.amazon.jsii.JsiiSerializable
A resource is one of the following: the ARN for an AWS resource that is supported by AWS Global Accelerator to be added as an endpoint, or a CIDR range that specifies a bring your own IP (BYOIP) address pool.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.globalaccelerator.*;
 ResourceProperty resourceProperty = ResourceProperty.builder()
         .cidr("cidr")
         .endpointId("endpointId")
         .region("region")
         .build();
 

See Also: