AcceleratorAttributes
- class aws_cdk.aws_globalaccelerator.AcceleratorAttributes(*, accelerator_arn, dns_name)
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.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_globalaccelerator as globalaccelerator accelerator_attributes = globalaccelerator.AcceleratorAttributes( accelerator_arn="acceleratorArn", dns_name="dnsName" )
Attributes
- accelerator_arn
The ARN of the accelerator.
- dns_name
The DNS name of the accelerator.