Interface CfnApprovalPolicyProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApprovalPolicyProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:15.783Z")
@Stability(Stable)
public interface CfnApprovalPolicyProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApprovalPolicy.
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.quicksight.*;
Object actions;
Object assetTypes;
Object type;
CfnApprovalPolicyProps cfnApprovalPolicyProps = CfnApprovalPolicyProps.builder()
.actions(List.of(actions))
.applicableTo(ApplicableToProperty.builder()
.type(type)
// the properties below are optional
.groupArns(List.of("groupArns"))
.build())
.approvalGroups(List.of("approvalGroups"))
.assetTypes(List.of(assetTypes))
.name("name")
.policyId("policyId")
// the properties below are optional
.description("description")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApprovalPolicyPropsstatic final classAn implementation forCfnApprovalPolicyProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
List of governed actions a policy applies to.Returns union: either Listinvalid input: '<'
Object> orIResolvable- See Also:
-
getApplicableTo
Scoping: who the policy applies to.GROUP:
groupArnsrequired (one or more group ARNs).Returns union: either
IResolvableorCfnApprovalPolicy.ApplicableToProperty- See Also:
-
getApprovalGroups
List of approval group ARNs (e.g. QuickSight group ARNs). At least one approval group is required; the upper bound is enforced per-account at the service layer via the configurable approver-group limit.- See Also:
-
getAssetTypes
List of asset types a policy applies to.At least one asset type is required.
Returns union: either Listinvalid input: '<'
Object> orIResolvable- See Also:
-
getName
- See Also:
-
getPolicyId
- See Also:
-
getDescription
- See Also:
-
builder
- Returns:
- a
CfnApprovalPolicyProps.BuilderofCfnApprovalPolicyProps
-