Class: Aws::TimestreamQuery::Types::Endpoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb

Overview

Represents an available endpoint against which to make API calls against, as well as the TTL for that endpoint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#addressString

An endpoint address.

Returns:

  • (String)


315
316
317
318
319
320
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 315

class Endpoint < Struct.new(
  :address,
  :cache_period_in_minutes)
  SENSITIVE = []
  include Aws::Structure
end

#cache_period_in_minutesInteger

The TTL for the endpoint, in minutes.

Returns:

  • (Integer)


315
316
317
318
319
320
# File 'gems/aws-sdk-timestreamquery/lib/aws-sdk-timestreamquery/types.rb', line 315

class Endpoint < Struct.new(
  :address,
  :cache_period_in_minutes)
  SENSITIVE = []
  include Aws::Structure
end