Interface CfnApprovalPolicyMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApprovalPolicyMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:31.725Z")
@Stability(Stable)
public interface CfnApprovalPolicyMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApprovalPolicyPropsMixin.
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.quicksight.*;
Object actions;
Object assetTypes;
Object type;
CfnApprovalPolicyMixinProps cfnApprovalPolicyMixinProps = CfnApprovalPolicyMixinProps.builder()
.actions(List.of(actions))
.applicableTo(ApplicableToProperty.builder()
.groupArns(List.of("groupArns"))
.type(type)
.build())
.approvalGroups(List.of("approvalGroups"))
.assetTypes(List.of(assetTypes))
.description("description")
.name("name")
.policyId("policyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApprovalPolicyMixinPropsstatic final classAn implementation forCfnApprovalPolicyMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectList of governed actions a policy applies to.default ObjectScoping: who the policy applies to.List of approval group ARNs (e.g.default ObjectList of asset types a policy applies to.default Stringdefault StringgetName()default StringMethods 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
IResolvableorCfnApprovalPolicyPropsMixin.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:
-
getDescription
- See Also:
-
getName
- See Also:
-
getPolicyId
- See Also:
-
builder
-