Interface CfnSupportPermit.ResourceSetProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSupportPermit.ResourceSetProperty.Jsii$Proxy
Enclosing class:
CfnSupportPermit

@Stability(Stable) public static interface CfnSupportPermit.ResourceSetProperty extends software.amazon.jsii.JsiiSerializable
The set of resources a support permit applies to.

Exactly one of AllResourcesInRegion or Resources must be provided.

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 allResourcesInRegion;
 ResourceSetProperty resourceSetProperty = ResourceSetProperty.builder()
         .allResourcesInRegion(allResourcesInRegion)
         .resources(List.of("resources"))
         .build();
 

See Also: