Interface CfnSupportPermitProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSupportPermitProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:20.537Z") @Stability(Stable) public interface CfnSupportPermitProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSupportPermit.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.supportauthz.*;
 Object allActions;
 Object allResourcesInRegion;
 CfnSupportPermitProps cfnSupportPermitProps = CfnSupportPermitProps.builder()
         .name("name")
         .permit(PermitProperty.builder()
                 .actions(ActionSetProperty.builder()
                         .actions(List.of("actions"))
                         .allActions(allActions)
                         .build())
                 .resources(ResourceSetProperty.builder()
                         .allResourcesInRegion(allResourcesInRegion)
                         .resources(List.of("resources"))
                         .build())
                 // the properties below are optional
                 .conditions(List.of(ConditionProperty.builder()
                         .allowAfter("allowAfter")
                         .allowBefore("allowBefore")
                         .build()))
                 .build())
         .signingKeyInfo(SigningKeyInfoProperty.builder()
                 .kmsKey("kmsKey")
                 .build())
         // the properties below are optional
         .description("description")
         .supportCaseDisplayId("supportCaseDisplayId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: