interface EnvironmentPlaceholderValues
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.CXAPI.EnvironmentPlaceholderValues | 
|  Java | software.amazon.awscdk.cxapi.EnvironmentPlaceholderValues | 
|  Python | aws_cdk.cx_api.EnvironmentPlaceholderValues | 
|  TypeScript (source) | @aws-cdk/cx-api»EnvironmentPlaceholderValues | 
Return the appropriate values for the environment placeholders.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cx_api from '@aws-cdk/cx-api';
const environmentPlaceholderValues: cx_api.EnvironmentPlaceholderValues = {
  accountId: 'accountId',
  partition: 'partition',
  region: 'region',
};
Properties
| Name | Type | Description | 
|---|---|---|
| account | string | Return the account. | 
| partition | string | Return the partition. | 
| region | string | Return the region. | 
accountId
Type:
string
Return the account.
partition
Type:
string
Return the partition.
region
Type:
string
Return the region.
