Module Values_0.CreateDeviceFleetRequestSource

Creates a device fleet.

Sourcetype nonrec t = {
  1. deviceFleetName : EntityName.t;
    (*

    The name of the fleet that the device belongs to.

    *)
  2. roleArn : RoleArn.t option;
    (*

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

    *)
  3. description : DeviceFleetDescription.t option;
    (*

    A description of the fleet.

    *)
  4. outputConfig : EdgeOutputConfig.t;
    (*

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

    *)
  5. tags : TagList.t option;
    (*

    Creates tags for the specified fleet.

    *)
  6. enableIotRoleAlias : EnableIotRoleAlias.t option;
    (*

    Whether to create an Amazon Web Services 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".

    *)
}
Sourceval context_ : string
Sourceval make : ?roleArn:??? -> ?description:??? -> ?tags:??? -> ?enableIotRoleAlias:??? -> deviceFleetName:EntityName.t -> outputConfig:EdgeOutputConfig.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of EnableIotRoleAlias.t | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of EntityName.t | `Structure of (string * [> `Enum of string | `String of S3Uri.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t