Interface CfnFleetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFleetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.855Z")
@Stability(Stable)
public interface CfnFleetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnFleet
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iotfleetwise.*; CfnFleetProps cfnFleetProps = CfnFleetProps.builder() .id("id") .signalCatalogArn("signalCatalogArn") // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFleetProps
static final class
An implementation forCfnFleetProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnFleetProps.Builder
builder()
default String
(Optional) A brief description of the fleet.getId()
The unique ID of the fleet.The ARN of the signal catalog associated with the fleet.getTags()
(Optional) Metadata that can be used to manage the fleet.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getId
The unique ID of the fleet. -
getSignalCatalogArn
The ARN of the signal catalog associated with the fleet. -
getDescription
(Optional) A brief description of the fleet. -
getTags
(Optional) Metadata that can be used to manage the fleet. -
builder
- Returns:
- a
CfnFleetProps.Builder
ofCfnFleetProps
-