CfnDeviceFleetMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDeviceFleetMixinProps(*, description=None, device_fleet_name=None, output_config=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnDeviceFleetPropsMixin.
- Parameters:
description (
Optional[str]) – A description of the fleet.device_fleet_name (
Optional[str]) – Name of the device fleet.output_config (
Union[IResolvable,EdgeOutputConfigProperty,Dict[str,Any],None]) – The output configuration for storing sample data collected by the fleet.role_arn (
Optional[str]) – The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs that contain metadata to help you categorize and organize your device fleets. Each tag consists of a key and a value, both of which you define.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_sagemaker import mixins as sagemaker_mixins cfn_device_fleet_mixin_props = sagemaker_mixins.CfnDeviceFleetMixinProps( description="description", device_fleet_name="deviceFleetName", output_config=sagemaker_mixins.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty( kms_key_id="kmsKeyId", s3_output_location="s3OutputLocation" ), role_arn="roleArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the fleet.
- device_fleet_name
Name of the device fleet.
- output_config
The output configuration for storing sample data collected by the fleet.
- role_arn
The Amazon Resource Name (ARN) that has access to AWS Internet of Things (IoT).
- tags
An array of key-value pairs that contain metadata to help you categorize and organize your device fleets.
Each tag consists of a key and a value, both of which you define.