aws-cdk-lib.cloud_assembly_schema.AvailabilityZonesContextQuery

interface AvailabilityZonesContextQuery

LanguageType name
.NETAmazon.CDK.CloudAssembly.Schema.AvailabilityZonesContextQuery
Gogithub.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#AvailabilityZonesContextQuery
Javasoftware.amazon.awscdk.cloudassembly.schema.AvailabilityZonesContextQuery
Pythonaws_cdk.cloud_assembly_schema.AvailabilityZonesContextQuery
TypeScript (source)aws-cdk-lib » cloud_assembly_schema » AvailabilityZonesContextQuery

Query to availability zone context provider.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { cloud_assembly_schema } from 'aws-cdk-lib';
const availabilityZonesContextQuery: cloud_assembly_schema.AvailabilityZonesContextQuery = {
  account: 'account',
  region: 'region',

  // the properties below are optional
  lookupRoleArn: 'lookupRoleArn',
};

Properties

NameTypeDescription
accountstringQuery account.
regionstringQuery region.
lookupRoleArn?stringThe ARN of the role that should be used to look up the missing values.

account

Type: string

Query account.


region

Type: string

Query region.


lookupRoleArn?

Type: string (optional, default: None)

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