Interface AmiContextQuery

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-17T21:37:40.819Z") @Stability(Stable) public interface AmiContextQuery extends software.amazon.jsii.JsiiSerializable, ContextLookupRoleOptions
Query to AMI 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;
 AmiContextQuery amiContextQuery = AmiContextQuery.builder()
         .account("account")
         .filters(Map.of(
                 "filtersKey", List.of("filters")))
         .region("region")
         // the properties below are optional
         .assumeRoleAdditionalOptions(Map.of(
                 "assumeRoleAdditionalOptionsKey", assumeRoleAdditionalOptions))
         .lookupRoleArn("lookupRoleArn")
         .lookupRoleExternalId("lookupRoleExternalId")
         .owners(List.of("owners"))
         .build();