Class: Aws::AppConfigData::Types::GetLatestConfigurationResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfigData::Types::GetLatestConfigurationResponse
- Defined in:
- gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:configuration]
Instance Attribute Summary collapse
-
#configuration ⇒ String
The data of the configuration.
-
#content_type ⇒ String
A standard MIME type describing the format of the configuration content.
-
#next_poll_configuration_token ⇒ String
The latest token describing the current state of the configuration session.
-
#next_poll_interval_in_seconds ⇒ Integer
The amount of time the client should wait before polling for configuration updates again.
Instance Attribute Details
#configuration ⇒ String
The data of the configuration. This may be empty if the client already has the latest version of configuration.
105 106 107 108 109 110 111 112 |
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 105 class GetLatestConfigurationResponse < Struct.new( :next_poll_configuration_token, :next_poll_interval_in_seconds, :content_type, :configuration) SENSITIVE = [:configuration] include Aws::Structure end |
#content_type ⇒ String
A standard MIME type describing the format of the configuration content.
105 106 107 108 109 110 111 112 |
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 105 class GetLatestConfigurationResponse < Struct.new( :next_poll_configuration_token, :next_poll_interval_in_seconds, :content_type, :configuration) SENSITIVE = [:configuration] include Aws::Structure end |
#next_poll_configuration_token ⇒ String
The latest token describing the current state of the configuration
session. This MUST be provided to the next call to
GetLatestConfiguration.
105 106 107 108 109 110 111 112 |
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 105 class GetLatestConfigurationResponse < Struct.new( :next_poll_configuration_token, :next_poll_interval_in_seconds, :content_type, :configuration) SENSITIVE = [:configuration] include Aws::Structure end |
#next_poll_interval_in_seconds ⇒ Integer
The amount of time the client should wait before polling for
configuration updates again. Use
RequiredMinimumPollIntervalInSeconds
to set the desired poll
interval.
105 106 107 108 109 110 111 112 |
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 105 class GetLatestConfigurationResponse < Struct.new( :next_poll_configuration_token, :next_poll_interval_in_seconds, :content_type, :configuration) SENSITIVE = [:configuration] include Aws::Structure end |