Class: Aws::TimestreamWrite::Types::Endpoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/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)


713
714
715
716
717
718
# File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 713

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)


713
714
715
716
717
718
# File 'gems/aws-sdk-timestreamwrite/lib/aws-sdk-timestreamwrite/types.rb', line 713

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