AcceleratorProps

class aws_cdk.aws_globalaccelerator.AcceleratorProps(*, accelerator_name=None, enabled=None)

Bases: object

Construct properties of the Accelerator.

Parameters:
  • accelerator_name (Optional[str]) – The name of the accelerator. Default: - resource ID

  • enabled (Optional[bool]) – Indicates whether the accelerator is enabled. Default: true

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_props = globalaccelerator.AcceleratorProps(
    accelerator_name="acceleratorName",
    enabled=False
)

Attributes

accelerator_name

The name of the accelerator.

Default:
  • resource ID

enabled

Indicates whether the accelerator is enabled.

Default:

true