Class: Aws::EC2::Types::UserData
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::UserData
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the user data for an instance.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The user data.
 
Instance Attribute Details
#data ⇒ String
The user data. If you are using an Amazon Web Services SDK or command line tool, Base64-encoding is performed for you, and you can load the text from a file. Otherwise, you must provide Base64-encoded text.
      67366 67367 67368 67369 67370  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 67366 class UserData < Struct.new( :data) SENSITIVE = [] include Aws::Structure end  |