Interface SSMParameterContextQuery

All Superinterfaces:
ContextLookupRoleOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SSMParameterContextQuery.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:42.363Z") @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();