CapacityProviderReference

class aws_cdk.interfaces.aws_lambda.CapacityProviderReference(*, capacity_provider_arn, capacity_provider_name)

Bases: object

A reference to a CapacityProvider resource.

Parameters:
  • capacity_provider_arn (str) – The ARN of the CapacityProvider resource.

  • capacity_provider_name (str) – The CapacityProviderName of the CapacityProvider resource.

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.interfaces import aws_lambda as interfaces_aws_lambda

capacity_provider_reference = interfaces_aws_lambda.CapacityProviderReference(
    capacity_provider_arn="capacityProviderArn",
    capacity_provider_name="capacityProviderName"
)

Attributes

capacity_provider_arn

The ARN of the CapacityProvider resource.

capacity_provider_name

The CapacityProviderName of the CapacityProvider resource.