interface EndpointServiceAvailabilityZonesContextQuery
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.EndpointServiceAvailabilityZonesContextQuery |
Java | software.amazon.awscdk.cloudassembly.schema.EndpointServiceAvailabilityZonesContextQuery |
Python | aws_cdk.cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery |
TypeScript (source) | @aws-cdk/cloud-assembly-schema » EndpointServiceAvailabilityZonesContextQuery |
Query to endpoint service context provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';
const endpointServiceAvailabilityZonesContextQuery: cloud_assembly_schema.EndpointServiceAvailabilityZonesContextQuery = {
account: 'account',
region: 'region',
serviceName: 'serviceName',
// the properties below are optional
lookupRoleArn: 'lookupRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | Query account. |
| region | string | Query region. |
| service | string | Query service name. |
| lookup | string | The ARN of the role that should be used to look up the missing values. |
account
Type:
string
Query account.
region
Type:
string
Query region.
serviceName
Type:
string
Query service name.
lookupRoleArn?
Type:
string
(optional, default: None)
The ARN of the role that should be used to look up the missing values.

.NET
Java
Python
TypeScript (