Interface CfnResourceSetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceSetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:26.233Z")
@Stability(Stable)
public interface CfnResourceSetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnResourceSetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.fms.mixins.*;
CfnResourceSetMixinProps cfnResourceSetMixinProps = CfnResourceSetMixinProps.builder()
.description("description")
.name("name")
.resources(List.of("resources"))
.resourceTypeList(List.of("resourceTypeList"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceSetMixinPropsstatic final classAn implementation forCfnResourceSetMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the resource set.- See Also:
-
getName
The descriptive name of the resource set.You can't change the name of a resource set after you create it.
- See Also:
-
getResources
- See Also:
-
getResourceTypeList
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.
- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnResourceSetMixinProps.BuilderofCfnResourceSetMixinProps
-