Class: Aws::AppConfigData::Types::StartConfigurationSessionResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AppConfigData::Types::StartConfigurationSessionResponse
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appconfigdata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #initial_configuration_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Token encapsulating state about the configuration session. 
Instance Attribute Details
#initial_configuration_token ⇒ String
Token encapsulating state about the configuration session. Provide this token to the ‘GetLatestConfiguration` API to retrieve configuration data.
This token should only be used once in your first call to ‘GetLatestConfiguration`. You must use the new token in the `GetLatestConfiguration` response (`NextPollConfigurationToken`) in each subsequent call to `GetLatestConfiguration`.
The `InitialConfigurationToken` and `NextPollConfigurationToken`
should only be used once. To support long poll use cases, the tokens are valid for up to 24 hours. If a ‘GetLatestConfiguration` call uses an expired token, the system returns `BadRequestException`.
| 225 226 227 228 229 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 225 class StartConfigurationSessionResponse < Struct.new( :initial_configuration_token) SENSITIVE = [] include Aws::Structure end |