Interface CfnSupportPermitPropsMixin.ResourceSetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSupportPermitPropsMixin.ResourceSetProperty.Jsii$Proxy
- Enclosing class:
CfnSupportPermitPropsMixin
@Stability(Stable)
public static interface CfnSupportPermitPropsMixin.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.cfnpropertymixins.services.supportauthz.*;
Object allResourcesInRegion;
ResourceSetProperty resourceSetProperty = ResourceSetProperty.builder()
.allResourcesInRegion(allResourcesInRegion)
.resources(List.of("resources"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSupportPermitPropsMixin.ResourceSetPropertystatic final classAn implementation forCfnSupportPermitPropsMixin.ResourceSetProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllResourcesInRegion
Applies to all resources in the region.- See Also:
-
getResources
An explicit list of resource ARNs.- See Also:
-
builder
-