Class: Aws::IoTTwinMaker::Types::PropertyRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iottwinmaker/types.rb

Overview

Note:

When making an API call, you may pass PropertyRequest data as a hash:

{
  definition: {
    data_type: {
      type: "RELATIONSHIP", # required, accepts RELATIONSHIP, STRING, LONG, BOOLEAN, INTEGER, DOUBLE, LIST, MAP
      nested_type: {
        # recursive DataType
      },
      allowed_values: [
        {
          boolean_value: false,
          double_value: 1.0,
          integer_value: 1,
          long_value: 1,
          string_value: "String",
          list_value: {
            # recursive DataValueList
          },
          map_value: {
            "String" => {
              # recursive DataValue
            },
          },
          relationship_value: {
            target_entity_id: "EntityId",
            target_component_name: "Name",
          },
          expression: "Expression",
        },
      ],
      unit_of_measure: "String",
      relationship: {
        target_component_type_id: "ComponentTypeId",
        relationship_type: "String",
      },
    },
    is_required_in_entity: false,
    is_external_id: false,
    is_stored_externally: false,
    is_time_series: false,
    default_value: {
      boolean_value: false,
      double_value: 1.0,
      integer_value: 1,
      long_value: 1,
      string_value: "String",
      list_value: [
        {
          # recursive DataValue
        },
      ],
      map_value: {
        "String" => {
          # recursive DataValue
        },
      },
      relationship_value: {
        target_entity_id: "EntityId",
        target_component_name: "Name",
      },
      expression: "Expression",
    },
    configuration: {
      "Name" => "Value",
    },
  },
  value: {
    boolean_value: false,
    double_value: 1.0,
    integer_value: 1,
    long_value: 1,
    string_value: "String",
    list_value: [
      {
        # recursive DataValue
      },
    ],
    map_value: {
      "String" => {
        # recursive DataValue
      },
    },
    relationship_value: {
      target_entity_id: "EntityId",
      target_component_name: "Name",
    },
    expression: "Expression",
  },
  update_type: "UPDATE", # accepts UPDATE, DELETE, CREATE
}

An object that sets information about a property.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#definitionTypes::PropertyDefinitionRequest

An object that specifies information about a property.



3183
3184
3185
3186
3187
3188
3189
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3183

class PropertyRequest < Struct.new(
  :definition,
  :value,
  :update_type)
  SENSITIVE = []
  include Aws::Structure
end

#update_typeString

The update type of the update property request.

Returns:

  • (String)


3183
3184
3185
3186
3187
3188
3189
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3183

class PropertyRequest < Struct.new(
  :definition,
  :value,
  :update_type)
  SENSITIVE = []
  include Aws::Structure
end

#valueTypes::DataValue

The value of the property.

Returns:



3183
3184
3185
3186
3187
3188
3189
# File 'lib/aws-sdk-iottwinmaker/types.rb', line 3183

class PropertyRequest < Struct.new(
  :definition,
  :value,
  :update_type)
  SENSITIVE = []
  include Aws::Structure
end