aws-cdk-lib.cloud_assembly_schema.SSMParameterContextQuery

interface SSMParameterContextQuery

LanguageType name
.NETAmazon.CDK.CloudAssembly.Schema.SSMParameterContextQuery
Gogithub.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#SSMParameterContextQuery
Javasoftware.amazon.awscdk.cloudassembly.schema.SSMParameterContextQuery
Pythonaws_cdk.cloud_assembly_schema.SSMParameterContextQuery
TypeScript (source)aws-cdk-lib » 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 { cloud_assembly_schema } from 'aws-cdk-lib';
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.