Class: Aws::AppConfigData::Types::GetLatestConfigurationResponse

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

Overview

Constant Summary collapse

SENSITIVE =
[:configuration]

Instance Attribute Summary collapse

Instance Attribute Details

#configurationString

The data of the configuration. This may be empty if the client already has the latest version of configuration.

Returns:

  • (String)


116
117
118
119
120
121
122
123
124
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 116

class GetLatestConfigurationResponse < Struct.new(
  :next_poll_configuration_token,
  :next_poll_interval_in_seconds,
  :content_type,
  :configuration,
  :version_label)
  SENSITIVE = [:configuration]
  include Aws::Structure
end

#content_typeString

A standard MIME type describing the format of the configuration content.

Returns:

  • (String)


116
117
118
119
120
121
122
123
124
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 116

class GetLatestConfigurationResponse < Struct.new(
  :next_poll_configuration_token,
  :next_poll_interval_in_seconds,
  :content_type,
  :configuration,
  :version_label)
  SENSITIVE = [:configuration]
  include Aws::Structure
end

#next_poll_configuration_tokenString

The latest token describing the current state of the configuration session. This must be provided to the next call to GetLatestConfiguration.

This token should only be used once. To support long poll use cases, the token is valid for up to 24 hours. If a GetLatestConfiguration call uses an expired token, the system returns BadRequestException.

Returns:

  • (String)


116
117
118
119
120
121
122
123
124
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 116

class GetLatestConfigurationResponse < Struct.new(
  :next_poll_configuration_token,
  :next_poll_interval_in_seconds,
  :content_type,
  :configuration,
  :version_label)
  SENSITIVE = [:configuration]
  include Aws::Structure
end

#next_poll_interval_in_secondsInteger

The amount of time the client should wait before polling for configuration updates again. Use RequiredMinimumPollIntervalInSeconds to set the desired poll interval.

Returns:

  • (Integer)


116
117
118
119
120
121
122
123
124
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 116

class GetLatestConfigurationResponse < Struct.new(
  :next_poll_configuration_token,
  :next_poll_interval_in_seconds,
  :content_type,
  :configuration,
  :version_label)
  SENSITIVE = [:configuration]
  include Aws::Structure
end

#version_labelString

The user-defined label for the AppConfig hosted configuration version. This attribute doesn't apply if the configuration is not from an AppConfig hosted configuration version. If the client already has the latest version of the configuration data, this value is empty.

Returns:

  • (String)


116
117
118
119
120
121
122
123
124
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 116

class GetLatestConfigurationResponse < Struct.new(
  :next_poll_configuration_token,
  :next_poll_interval_in_seconds,
  :content_type,
  :configuration,
  :version_label)
  SENSITIVE = [:configuration]
  include Aws::Structure
end