CfnDeviceMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDeviceMixinProps(*, device=None, device_fleet_name=None, tags=None)
Bases:
objectProperties for CfnDevicePropsMixin.
- Parameters:
device (
Union[IResolvable,DeviceProperty,Dict[str,Any],None]) – Edge device you want to create.device_fleet_name (
Optional[str]) – The name of the fleet the device belongs to.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs that contain metadata to help you categorize and organize your devices. Each tag consists of a key and a value, both of which you define.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-device.html
- ExampleMetadata:
fixture=_generated
Example:
# 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_mixin_props = sagemaker_mixins.CfnDeviceMixinProps( device=sagemaker_mixins.CfnDevicePropsMixin.DeviceProperty( description="description", device_name="deviceName", iot_thing_name="iotThingName" ), device_fleet_name="deviceFleetName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- device
Edge device you want to create.
- device_fleet_name
The name of the fleet the device belongs to.
- tags
An array of key-value pairs that contain metadata to help you categorize and organize your devices.
Each tag consists of a key and a value, both of which you define.