Class: Aws::IoT::Types::TimestreamAction

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

Overview

The Timestream rule action writes attributes (measures) from an MQTT message into an Amazon Timestream table. For more information, see the

Timestream][1

topic rule action documentation.

[1]: docs.aws.amazon.com/iot/latest/developerguide/timestream-rule-action.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#database_nameString

The name of an Amazon Timestream database.

Returns:

  • (String)


15117
15118
15119
15120
15121
15122
15123
15124
15125
# File 'lib/aws-sdk-iot/types.rb', line 15117

class TimestreamAction < Struct.new(
  :role_arn,
  :database_name,
  :table_name,
  :dimensions,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#dimensionsArray<Types::TimestreamDimension>

Metadata attributes of the time series that are written in each measure record.

Returns:



15117
15118
15119
15120
15121
15122
15123
15124
15125
# File 'lib/aws-sdk-iot/types.rb', line 15117

class TimestreamAction < Struct.new(
  :role_arn,
  :database_name,
  :table_name,
  :dimensions,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The ARN of the role that grants permission to write to the Amazon Timestream database table.

Returns:

  • (String)


15117
15118
15119
15120
15121
15122
15123
15124
15125
# File 'lib/aws-sdk-iot/types.rb', line 15117

class TimestreamAction < Struct.new(
  :role_arn,
  :database_name,
  :table_name,
  :dimensions,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#table_nameString

The name of the database table into which to write the measure records.

Returns:

  • (String)


15117
15118
15119
15120
15121
15122
15123
15124
15125
# File 'lib/aws-sdk-iot/types.rb', line 15117

class TimestreamAction < Struct.new(
  :role_arn,
  :database_name,
  :table_name,
  :dimensions,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end

#timestampTypes::TimestreamTimestamp

Specifies an application-defined value to replace the default value assigned to the Timestream record’s timestamp in the ‘time` column.

You can use this property to specify the value and the precision of the Timestream record’s timestamp. You can specify a value from the message payload or a value computed by a substitution template.

If omitted, the topic rule action assigns the timestamp, in milliseconds, at the time it processed the rule.



15117
15118
15119
15120
15121
15122
15123
15124
15125
# File 'lib/aws-sdk-iot/types.rb', line 15117

class TimestreamAction < Struct.new(
  :role_arn,
  :database_name,
  :table_name,
  :dimensions,
  :timestamp)
  SENSITIVE = []
  include Aws::Structure
end