AcceleratorAttributes

class aws_cdk.aws_globalaccelerator.AcceleratorAttributes(*, accelerator_arn, dns_name, dual_stack_dns_name=None, ipv4_addresses=None, ipv6_addresses=None)

Bases: object

Attributes required to import an existing accelerator to the stack.

Parameters:
  • accelerator_arn (str) – The ARN of the accelerator.

  • dns_name (str) – The DNS name of the accelerator.

  • dual_stack_dns_name (Optional[str]) – The DNS name that points to the dual-stack accelerator’s four static IP addresses: two IPv4 addresses and two IPv6 addresses. Default: - undefined

  • ipv4_addresses (Optional[Sequence[str]]) – The array of IPv4 addresses in the IP address set. Default: - undefined

  • ipv6_addresses (Optional[Sequence[str]]) – The array of IPv6 addresses in the IP address set. Default: - undefined

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_globalaccelerator as globalaccelerator

accelerator_attributes = globalaccelerator.AcceleratorAttributes(
    accelerator_arn="acceleratorArn",
    dns_name="dnsName",

    # the properties below are optional
    dual_stack_dns_name="dualStackDnsName",
    ipv4_addresses=["ipv4Addresses"],
    ipv6_addresses=["ipv6Addresses"]
)

Attributes

accelerator_arn

The ARN of the accelerator.

dns_name

The DNS name of the accelerator.

dual_stack_dns_name

two IPv4 addresses and two IPv6 addresses.

Default:
  • undefined

Type:

The DNS name that points to the dual-stack accelerator’s four static IP addresses

ipv4_addresses

The array of IPv4 addresses in the IP address set.

Default:
  • undefined

ipv6_addresses

The array of IPv6 addresses in the IP address set.

Default:
  • undefined