interface SSMParameterContextQuery
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.SSMParameterContextQuery |
Java | software.amazon.awscdk.cloudassembly.schema.SSMParameterContextQuery |
Python | aws_cdk.cloud_assembly_schema.SSMParameterContextQuery |
TypeScript (source) | @aws-cdk/cloud-assembly-schema » SSMParameterContextQuery |
Query to SSM Parameter 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 sSMParameterContextQuery: cloud_assembly_schema.SSMParameterContextQuery = {
account: 'account',
parameterName: 'parameterName',
region: 'region',
// the properties below are optional
lookupRoleArn: 'lookupRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | Query account. |
| parameter | string | Parameter name to query. |
| region | string | Query region. |
| lookup | string | The ARN of the role that should be used to look up the missing values. |
account
Type:
string
Query account.
parameterName
Type:
string
Parameter name to query.
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.

.NET
Java
Python
TypeScript (