Class: Aws::AppConfigData::Types::StartConfigurationSessionRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AppConfigData::Types::StartConfigurationSessionRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appconfigdata/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #application_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The application ID or the application name. 
- 
  
    
      #configuration_profile_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The configuration profile ID or the configuration profile name. 
- 
  
    
      #environment_identifier  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The environment ID or the environment name. 
- 
  
    
      #required_minimum_poll_interval_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Sets a constraint on a session. 
Instance Attribute Details
#application_identifier ⇒ String
The application ID or the application name.
| 198 199 200 201 202 203 204 205 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 198 class StartConfigurationSessionRequest < Struct.new( :application_identifier, :environment_identifier, :configuration_profile_identifier, :required_minimum_poll_interval_in_seconds) SENSITIVE = [] include Aws::Structure end | 
#configuration_profile_identifier ⇒ String
The configuration profile ID or the configuration profile name.
| 198 199 200 201 202 203 204 205 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 198 class StartConfigurationSessionRequest < Struct.new( :application_identifier, :environment_identifier, :configuration_profile_identifier, :required_minimum_poll_interval_in_seconds) SENSITIVE = [] include Aws::Structure end | 
#environment_identifier ⇒ String
The environment ID or the environment name.
| 198 199 200 201 202 203 204 205 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 198 class StartConfigurationSessionRequest < Struct.new( :application_identifier, :environment_identifier, :configuration_profile_identifier, :required_minimum_poll_interval_in_seconds) SENSITIVE = [] include Aws::Structure end | 
#required_minimum_poll_interval_in_seconds ⇒ Integer
Sets a constraint on a session. If you specify a value of, for example, 60 seconds, then the client that established the session can’t call GetLatestConfiguration more frequently than every 60 seconds.
| 198 199 200 201 202 203 204 205 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 198 class StartConfigurationSessionRequest < Struct.new( :application_identifier, :environment_identifier, :configuration_profile_identifier, :required_minimum_poll_interval_in_seconds) SENSITIVE = [] include Aws::Structure end |