Class SSMParameterContextQuery
Query to SSM Parameter Context Provider.
Inheritance
System.Object
SSMParameterContextQuery
Implements
Namespace: Amazon.CDK.CloudAssembly.Schema
Assembly: Amazon.CDK.CloudAssembly.Schema.dll
Syntax (csharp)
public class SSMParameterContextQuery : Object, ISSMParameterContextQuery
Syntax (vb)
Public Class SSMParameterContextQuery
Inherits Object
Implements ISSMParameterContextQuery
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CloudAssembly.Schema;
var sSMParameterContextQuery = new SSMParameterContextQuery {
Account = "account",
ParameterName = "parameterName",
Region = "region",
// the properties below are optional
LookupRoleArn = "lookupRoleArn"
};
Synopsis
Constructors
SSMParameterContextQuery() |
Properties
Account | Query account. |
LookupRoleArn | The ARN of the role that should be used to look up the missing values. |
ParameterName | Parameter name to query. |
Region | Query region. |
Constructors
SSMParameterContextQuery()
public SSMParameterContextQuery()
Properties
Account
Query account.
public string Account { get; set; }
Property Value
System.String
LookupRoleArn
The ARN of the role that should be used to look up the missing values.
public string LookupRoleArn { get; set; }
Property Value
System.String
Remarks
Default: - None
ParameterName
Parameter name to query.
public string ParameterName { get; set; }
Property Value
System.String
Region
Query region.
public string Region { get; set; }
Property Value
System.String