Show / Hide Table of Contents

Interface IAcceleratorAttributes

Attributes required to import an existing accelerator to the stack.

Namespace: Amazon.CDK.AWS.GlobalAccelerator
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAcceleratorAttributes
Syntax (vb)
Public Interface IAcceleratorAttributes
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 acceleratorAttributes = new AcceleratorAttributes {
                AcceleratorArn = "acceleratorArn",
                DnsName = "dnsName",

                // the properties below are optional
                DualStackDnsName = "dualStackDnsName",
                Ipv4Addresses = new [] { "ipv4Addresses" },
                Ipv6Addresses = new [] { "ipv6Addresses" }
            };

Synopsis

Properties

AcceleratorArn

The ARN of the accelerator.

DnsName

The DNS name of the accelerator.

DualStackDnsName

The DNS name that points to the dual-stack accelerator's four static IP addresses: two IPv4 addresses and two IPv6 addresses.

Ipv4Addresses

The array of IPv4 addresses in the IP address set.

Ipv6Addresses

The array of IPv6 addresses in the IP address set.

Properties

AcceleratorArn

The ARN of the accelerator.

string AcceleratorArn { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DnsName

The DNS name of the accelerator.

string DnsName { get; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

DualStackDnsName

The DNS name that points to the dual-stack accelerator's four static IP addresses: two IPv4 addresses and two IPv6 addresses.

string? DualStackDnsName { get; }
Property Value

string

Remarks

Default: - undefined

Ipv4Addresses

The array of IPv4 addresses in the IP address set.

string[]? Ipv4Addresses { get; }
Property Value

string[]

Remarks

Default: - undefined

Ipv6Addresses

The array of IPv6 addresses in the IP address set.

string[]? Ipv6Addresses { get; }
Property Value

string[]

Remarks

Default: - undefined

Back to top Generated by DocFX