Class: Aws::IoTFleetWise::Types::UpdateModelManifestRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTFleetWise::Types::UpdateModelManifestRequest
- Defined in:
- gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
A brief description of the vehicle model.
-
#name ⇒ String
The name of the vehicle model to update.
-
#nodes_to_add ⇒ Array<String>
A list of
fullyQualifiedName
of nodes, which are a general abstraction of signals, to add to the vehicle model. -
#nodes_to_remove ⇒ Array<String>
A list of
fullyQualifiedName
of nodes, which are a general abstraction of signals, to remove from the vehicle model. -
#status ⇒ String
The state of the vehicle model.
Instance Attribute Details
#description ⇒ String
A brief description of the vehicle model.
4019 4020 4021 4022 4023 4024 4025 4026 4027 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 4019 class UpdateModelManifestRequest < Struct.new( :name, :description, :nodes_to_add, :nodes_to_remove, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the vehicle model to update.
4019 4020 4021 4022 4023 4024 4025 4026 4027 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 4019 class UpdateModelManifestRequest < Struct.new( :name, :description, :nodes_to_add, :nodes_to_remove, :status) SENSITIVE = [] include Aws::Structure end |
#nodes_to_add ⇒ Array<String>
A list of fullyQualifiedName
of nodes, which are a general
abstraction of signals, to add to the vehicle model.
4019 4020 4021 4022 4023 4024 4025 4026 4027 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 4019 class UpdateModelManifestRequest < Struct.new( :name, :description, :nodes_to_add, :nodes_to_remove, :status) SENSITIVE = [] include Aws::Structure end |
#nodes_to_remove ⇒ Array<String>
A list of fullyQualifiedName
of nodes, which are a general
abstraction of signals, to remove from the vehicle model.
4019 4020 4021 4022 4023 4024 4025 4026 4027 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 4019 class UpdateModelManifestRequest < Struct.new( :name, :description, :nodes_to_add, :nodes_to_remove, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
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.
4019 4020 4021 4022 4023 4024 4025 4026 4027 |
# File 'gems/aws-sdk-iotfleetwise/lib/aws-sdk-iotfleetwise/types.rb', line 4019 class UpdateModelManifestRequest < Struct.new( :name, :description, :nodes_to_add, :nodes_to_remove, :status) SENSITIVE = [] include Aws::Structure end |