Class: Aws::AppConfigData::Types::GetLatestConfigurationResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfigData::Types::GetLatestConfigurationResponse
- Includes:
- Structure
- Defined in:
- 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.
-
#version_label ⇒ String
The user-defined label for the AppConfig hosted configuration version.
Instance Attribute Details
#configuration ⇒ String
The data of the configuration. This may be empty if the client already has the latest version of configuration.
116 117 118 119 120 121 122 123 124 |
# File '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_type ⇒ String
A standard MIME type describing the format of the configuration content.
116 117 118 119 120 121 122 123 124 |
# File '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_token ⇒ String
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`.
116 117 118 119 120 121 122 123 124 |
# File '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_seconds ⇒ Integer
The amount of time the client should wait before polling for configuration updates again. Use ‘RequiredMinimumPollIntervalInSeconds` to set the desired poll interval.
116 117 118 119 120 121 122 123 124 |
# File '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_label ⇒ String
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.
116 117 118 119 120 121 122 123 124 |
# File '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 |