Class: Aws::AppConfigData::Types::GetLatestConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppConfigData::Types::GetLatestConfigurationRequest
- Defined in:
- gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb
Overview
Note:
When making an API call, you may pass GetLatestConfigurationRequest data as a hash:
{
configuration_token: "Token", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_token ⇒ String
Token describing the current state of the configuration session.
Instance Attribute Details
#configuration_token ⇒ String
Token describing the current state of the configuration session. To
obtain a token, first call the StartConfigurationSession API. Note
that every call to GetLatestConfiguration
will return a new
ConfigurationToken
(NextPollConfigurationToken
in the response)
and MUST be provided to subsequent GetLatestConfiguration
API
calls.
74 75 76 77 78 |
# File 'gems/aws-sdk-appconfigdata/lib/aws-sdk-appconfigdata/types.rb', line 74 class GetLatestConfigurationRequest < Struct.new( :configuration_token) SENSITIVE = [] include Aws::Structure end |