interface ActionSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SupportAuthZ.CfnSupportPermit.ActionSetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssupportauthz#CfnSupportPermit_ActionSetProperty |
Java | software.amazon.awscdk.services.supportauthz.CfnSupportPermit.ActionSetProperty |
Python | aws_cdk.aws_supportauthz.CfnSupportPermit.ActionSetProperty |
TypeScript | aws-cdk-lib » aws_supportauthz » CfnSupportPermit » ActionSetProperty |
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 { aws_supportauthz as supportauthz } from 'aws-cdk-lib';
declare const allActions: any;
const actionSetProperty: supportauthz.CfnSupportPermit.ActionSetProperty = {
actions: ['actions'],
allActions: allActions,
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | An explicit list of actions to grant. |
| all | any | Grants all actions. |
actions?
Type:
string[]
(optional)
An explicit list of actions to grant.
allActions?
Type:
any
(optional)
Grants all actions.

.NET
Go
Java
Python
TypeScript