Interface CfnFleetMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleetMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.408Z")
@Stability(Stable)
public interface CfnFleetMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFleetPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.*;
CfnFleetMixinProps cfnFleetMixinProps = CfnFleetMixinProps.builder()
.description("description")
.id("id")
.signalCatalogArn("signalCatalogArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFleetMixinPropsstatic final classAn implementation forCfnFleetMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFleetMixinProps.Builderbuilder()default StringA brief description of the fleet.default StringgetId()The unique ID of the fleet.default StringThe ARN of the signal catalog associated with the fleet.getTags()Metadata that can be used to manage the fleet.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A brief description of the fleet.- See Also:
-
getId
The unique ID of the fleet.- See Also:
-
getSignalCatalogArn
The ARN of the signal catalog associated with the fleet.- See Also:
-
getTags
Metadata that can be used to manage the fleet.- See Also:
-
builder
- Returns:
- a
CfnFleetMixinProps.BuilderofCfnFleetMixinProps
-