logo
pub struct CreateDeviceFleetRequest {
    pub description: Option<String>,
    pub device_fleet_name: String,
    pub enable_iot_role_alias: Option<bool>,
    pub output_config: EdgeOutputConfig,
    pub role_arn: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

description: Option<String>

A description of the fleet.

device_fleet_name: String

The name of the fleet that the device belongs to.

enable_iot_role_alias: Option<bool>

Whether to create an AWS IoT Role Alias during device fleet creation. The name of the role alias generated will match this pattern: "SageMakerEdge-{DeviceFleetName}".

For example, if your device fleet is called "demo-fleet", the name of the role alias will be "SageMakerEdge-demo-fleet".

output_config: EdgeOutputConfig

The output configuration for storing sample data collected by the fleet.

role_arn: Option<String>

The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).

tags: Option<Vec<Tag>>

Creates tags for the specified fleet.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more