CfnResourceSetMixinProps
- class aws_cdk.mixins_preview.aws_fms.mixins.CfnResourceSetMixinProps(*, description=None, name=None, resources=None, resource_type_list=None, tags=None)
Bases:
objectProperties for CfnResourceSetPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the resource set.name (
Optional[str]) – The descriptive name of the resource set. You can’t change the name of a resource set after you create it.resources (
Optional[Sequence[str]])resource_type_list (
Optional[Sequence[str]]) – 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.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]])
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-resourceset.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_fms import mixins as fms_mixins cfn_resource_set_mixin_props = fms_mixins.CfnResourceSetMixinProps( description="description", name="name", resources=["resources"], resource_type_list=["resourceTypeList"], tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the resource set.
- name
The descriptive name of the resource set.
You can’t change the name of a resource set after you create it.
- resource_type_list
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:
see