Interface SSMParameterContextQuery
- All Superinterfaces:
ContextLookupRoleOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SSMParameterContextQuery.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:16.227Z")
@Stability(Stable)
public interface SSMParameterContextQuery
extends software.amazon.jsii.JsiiSerializable, ContextLookupRoleOptions
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 software.amazon.awscdk.cloud_assembly_schema.*;
Object assumeRoleAdditionalOptions;
SSMParameterContextQuery sSMParameterContextQuery = SSMParameterContextQuery.builder()
.account("account")
.parameterName("parameterName")
.region("region")
// the properties below are optional
.assumeRoleAdditionalOptions(Map.of(
"assumeRoleAdditionalOptionsKey", assumeRoleAdditionalOptions))
.lookupRoleArn("lookupRoleArn")
.lookupRoleExternalId("lookupRoleExternalId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSSMParameterContextQuerystatic final classAn implementation forSSMParameterContextQuery -
Method Summary
Methods inherited from interface software.amazon.awscdk.cloud_assembly_schema.ContextLookupRoleOptions
getAccount, getAssumeRoleAdditionalOptions, getLookupRoleArn, getLookupRoleExternalId, getRegionMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterName
Parameter name to query. -
builder
- Returns:
- a
SSMParameterContextQuery.BuilderofSSMParameterContextQuery
-