package awssagemaker // Information of a particular device. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // deviceProperty := &DeviceProperty{ // DeviceName: jsii.String("deviceName"), // // // the properties below are optional // Description: jsii.String("description"), // IotThingName: jsii.String("iotThingName"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-device-device.html // type CfnDevice_DeviceProperty struct { // The name of the device. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-device-device.html#cfn-sagemaker-device-device-devicename // DeviceName *string `field:"required" json:"deviceName" yaml:"deviceName"` // Description of the device. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-device-device.html#cfn-sagemaker-device-device-description // Description *string `field:"optional" json:"description" yaml:"description"` // AWS Internet of Things (IoT) object name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-device-device.html#cfn-sagemaker-device-device-iotthingname // IotThingName *string `field:"optional" json:"iotThingName" yaml:"iotThingName"` }