Class: Aws::AppConfigData::Types::BadRequestDetails
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AppConfigData::Types::BadRequestDetails
 
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-appconfigdata/types.rb
Overview
Detailed information about the input that failed to satisfy the constraints specified by a call.
Direct Known Subclasses
Defined Under Namespace
Classes: InvalidParameters, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #invalid_parameters  ⇒ Hash<String,Types::InvalidParameterDetail> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    One or more specified parameters are not valid for the call. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#invalid_parameters ⇒ Hash<String,Types::InvalidParameterDetail>
One or more specified parameters are not valid for the call.
| 22 23 24 25 26 27 28 29 30 31 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 22 class BadRequestDetails < Struct.new( :invalid_parameters, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class InvalidParameters < BadRequestDetails; end class Unknown < BadRequestDetails; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 22 23 24 | # File 'lib/aws-sdk-appconfigdata/types.rb', line 22 def unknown @unknown end |