interface ResourceSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SupportAuthZ.CfnSupportPermit.ResourceSetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssupportauthz#CfnSupportPermit_ResourceSetProperty |
Java | software.amazon.awscdk.services.supportauthz.CfnSupportPermit.ResourceSetProperty |
Python | aws_cdk.aws_supportauthz.CfnSupportPermit.ResourceSetProperty |
TypeScript | aws-cdk-lib » aws_supportauthz » CfnSupportPermit » ResourceSetProperty |
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 { aws_supportauthz as supportauthz } from 'aws-cdk-lib';
declare const allResourcesInRegion: any;
const resourceSetProperty: supportauthz.CfnSupportPermit.ResourceSetProperty = {
allResourcesInRegion: allResourcesInRegion,
resources: ['resources'],
};
Properties
| Name | Type | Description |
|---|---|---|
| all | any | Applies to all resources in the region. |
| resources? | string[] | An explicit list of resource ARNs. |
allResourcesInRegion?
Type:
any
(optional)
Applies to all resources in the region.
resources?
Type:
string[]
(optional)
An explicit list of resource ARNs.

.NET
Go
Java
Python
TypeScript