package awsiotfleetwise // 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" // // canSignalDecoderProperty := &CanSignalDecoderProperty{ // CanSignal: &CanSignalProperty{ // Factor: jsii.String("factor"), // IsBigEndian: jsii.String("isBigEndian"), // IsSigned: jsii.String("isSigned"), // Length: jsii.String("length"), // MessageId: jsii.String("messageId"), // Offset: jsii.String("offset"), // StartBit: jsii.String("startBit"), // // // the properties below are optional // Name: jsii.String("name"), // }, // FullyQualifiedName: jsii.String("fullyQualifiedName"), // InterfaceId: jsii.String("interfaceId"), // Type: jsii.String("type"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-cansignaldecoder.html // type CfnDecoderManifest_CanSignalDecoderProperty struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-cansignaldecoder.html#cfn-iotfleetwise-decodermanifest-cansignaldecoder-cansignal // CanSignal interface{} `field:"required" json:"canSignal" yaml:"canSignal"` // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-cansignaldecoder.html#cfn-iotfleetwise-decodermanifest-cansignaldecoder-fullyqualifiedname // FullyQualifiedName *string `field:"required" json:"fullyQualifiedName" yaml:"fullyQualifiedName"` // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-cansignaldecoder.html#cfn-iotfleetwise-decodermanifest-cansignaldecoder-interfaceid // InterfaceId *string `field:"required" json:"interfaceId" yaml:"interfaceId"` // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-decodermanifest-cansignaldecoder.html#cfn-iotfleetwise-decodermanifest-cansignaldecoder-type // Type *string `field:"required" json:"type" yaml:"type"` }