package awsiotfleetwise import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnModelManifest`. // // 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" // // cfnModelManifestProps := &CfnModelManifestProps{ // Name: jsii.String("name"), // SignalCatalogArn: jsii.String("signalCatalogArn"), // // // the properties below are optional // Description: jsii.String("description"), // Nodes: []*string{ // jsii.String("nodes"), // }, // Status: jsii.String("status"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html // type CfnModelManifestProps struct { // The name of the vehicle model. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-name // Name *string `field:"required" json:"name" yaml:"name"` // The Amazon Resource Name (ARN) of the signal catalog associated with the vehicle model. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-signalcatalogarn // SignalCatalogArn *string `field:"required" json:"signalCatalogArn" yaml:"signalCatalogArn"` // (Optional) A brief description of the vehicle model. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-description // Description *string `field:"optional" json:"description" yaml:"description"` // (Optional) A list of nodes, which are a general abstraction of signals. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-nodes // Nodes *[]*string `field:"optional" json:"nodes" yaml:"nodes"` // (Optional) The state of the vehicle model. // // If the status is `ACTIVE` , the vehicle model can't be edited. If the status is `DRAFT` , you can edit the vehicle model. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-status // Status *string `field:"optional" json:"status" yaml:"status"` // (Optional) Metadata that can be used to manage the vehicle model. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-modelmanifest.html#cfn-iotfleetwise-modelmanifest-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }