@aws-cdk_cloud-assembly-schema.SSMParameterContextQuery

interface SSMParameterContextQuery

LanguageType name
.NETAmazon.CDK.CloudAssembly.Schema.SSMParameterContextQuery
Javasoftware.amazon.awscdk.cloudassembly.schema.SSMParameterContextQuery
Pythonaws_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

NameTypeDescription
accountstringQuery account.
parameterNamestringParameter name to query.
regionstringQuery region.
lookupRoleArn?stringThe 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.