Class: Aws::IoT::Types::CreatePackageRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoT::Types::CreatePackageRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iot/types.rb
 
Constant Summary collapse
- SENSITIVE =
 [:description]
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A summary of the package being created.
 - 
  
    
      #package_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the new software package.
 - 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Metadata that can be used to manage the package.
 
Instance Attribute Details
#client_token ⇒ String
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don’t reuse this client token if a new idempotent request is required.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
      3318 3319 3320 3321 3322 3323 3324 3325  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3318 class CreatePackageRequest < Struct.new( :package_name, :description, :tags, :client_token) SENSITIVE = [:description] include Aws::Structure end  | 
  
#description ⇒ String
A summary of the package being created. This can be used to outline the package’s contents or purpose.
      3318 3319 3320 3321 3322 3323 3324 3325  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3318 class CreatePackageRequest < Struct.new( :package_name, :description, :tags, :client_token) SENSITIVE = [:description] include Aws::Structure end  | 
  
#package_name ⇒ String
The name of the new software package.
      3318 3319 3320 3321 3322 3323 3324 3325  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3318 class CreatePackageRequest < Struct.new( :package_name, :description, :tags, :client_token) SENSITIVE = [:description] include Aws::Structure end  | 
  
#tags ⇒ Hash<String,String>
Metadata that can be used to manage the package.
      3318 3319 3320 3321 3322 3323 3324 3325  | 
    
      # File 'lib/aws-sdk-iot/types.rb', line 3318 class CreatePackageRequest < Struct.new( :package_name, :description, :tags, :client_token) SENSITIVE = [:description] include Aws::Structure end  |