Interface CfnSupportPermit.ActionSetProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSupportPermit.ActionSetProperty.Jsii$Proxy
- Enclosing class:
CfnSupportPermit
@Stability(Stable)
public static interface CfnSupportPermit.ActionSetProperty
extends software.amazon.jsii.JsiiSerializable
The set of actions a support permit grants.
Exactly one of AllActions or Actions 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 allActions;
ActionSetProperty actionSetProperty = ActionSetProperty.builder()
.actions(List.of("actions"))
.allActions(allActions)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSupportPermit.ActionSetPropertystatic final classAn implementation forCfnSupportPermit.ActionSetProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
An explicit list of actions to grant.- See Also:
-
getAllActions
Grants all actions.- See Also:
-
builder
-