EndpointServiceAvailabilityZonesContextQuery

class aws_cdk.cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery(*, account, region, service_name, lookup_role_arn=None)

Bases: object

Query to endpoint service context provider.

Parameters:
  • account (str) – Query account.

  • region (str) – Query region.

  • service_name (str) – Query service name.

  • lookup_role_arn (Optional[str]) – The ARN of the role that should be used to look up the missing values. Default: - None

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.cloud_assembly_schema as cloud_assembly_schema

endpoint_service_availability_zones_context_query = cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery(
    account="account",
    region="region",
    service_name="serviceName",

    # the properties below are optional
    lookup_role_arn="lookupRoleArn"
)

Attributes

account

Query account.

lookup_role_arn

The ARN of the role that should be used to look up the missing values.

Default:
  • None

region

Query region.

service_name

Query service name.