interface CfnResourceSetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FMS.Mixins.CfnResourceSetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfms/mixins#CfnResourceSetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.fms.mixins.CfnResourceSetMixinProps |
Python | aws_cdk.mixins_preview.aws_fms.mixins.CfnResourceSetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_fms » mixins » CfnResourceSetMixinProps |
Properties for CfnResourceSetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-resourceset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as fms_mixins } from '@aws-cdk/mixins-preview/aws-fms';
const cfnResourceSetMixinProps: fms_mixins.CfnResourceSetMixinProps = {
description: 'description',
name: 'name',
resources: ['resources'],
resourceTypeList: ['resourceTypeList'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the resource set. |
| name? | string | The descriptive name of the resource set. |
| resource | string[] | Determines the resources that can be associated to the resource set. |
| resources? | string[] | |
| tags? | Cfn[] |
description?
Type:
string
(optional)
A description of the resource set.
name?
Type:
string
(optional)
The descriptive name of the resource set.
You can't change the name of a resource set after you create it.
resourceTypeList?
Type:
string[]
(optional)
Determines the resources that can be associated to the resource set.
Depending on your setting for max results and the number of resource sets, a single call might not return the full list.
resources?
Type:
string[]
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript