Interface CfnCrossAccountAttachment.IResourceProperty
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.
Namespace: Amazon.CDK.AWS.GlobalAccelerator
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCrossAccountAttachment.IResourceProperty
Syntax (vb)
Public Interface CfnCrossAccountAttachment.IResourceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.GlobalAccelerator;
var resourceProperty = new ResourceProperty {
Cidr = "cidr",
EndpointId = "endpointId",
Region = "region"
};
Synopsis
Properties
Cidr | An IP address range, in CIDR format, that is specified as resource. |
EndpointId | The endpoint ID for the endpoint that is specified as a AWS resource. |
Region | The AWS Region where a shared endpoint resource is located. |
Properties
Cidr
An IP address range, in CIDR format, that is specified as resource.
string? Cidr { get; }
Property Value
Remarks
The address must be provisioned and advertised in AWS Global Accelerator by following the bring your own IP address (BYOIP) process for Global Accelerator
For more information, see Bring your own IP addresses (BYOIP) in the AWS Global Accelerator Developer Guide.
EndpointId
The endpoint ID for the endpoint that is specified as a AWS resource.
string? EndpointId { get; }
Property Value
Remarks
An endpoint ID for the cross-account feature is the ARN of an AWS resource, such as a Network Load Balancer, that Global Accelerator supports as an endpoint for an accelerator.
Region
The AWS Region where a shared endpoint resource is located.
string? Region { get; }