Class: Aws::CodeStarconnections::Types::CreateHostInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodeStarconnections::Types::CreateHostInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codestarconnections/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the host to be created.
 - 
  
    
      #provider_endpoint  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The endpoint of the infrastructure to be represented by the host after it is created.
 - 
  
    
      #provider_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the installed provider to be associated with your connection.
 - #tags ⇒ Array<Types::Tag>
 - 
  
    
      #vpc_configuration  ⇒ Types::VpcConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The VPC configuration to be provisioned for the host.
 
Instance Attribute Details
#name ⇒ String
The name of the host to be created.
      160 161 162 163 164 165 166 167 168  | 
    
      # File 'lib/aws-sdk-codestarconnections/types.rb', line 160 class CreateHostInput < Struct.new( :name, :provider_type, :provider_endpoint, :vpc_configuration, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#provider_endpoint ⇒ String
The endpoint of the infrastructure to be represented by the host after it is created.
      160 161 162 163 164 165 166 167 168  | 
    
      # File 'lib/aws-sdk-codestarconnections/types.rb', line 160 class CreateHostInput < Struct.new( :name, :provider_type, :provider_endpoint, :vpc_configuration, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#provider_type ⇒ String
The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.
      160 161 162 163 164 165 166 167 168  | 
    
      # File 'lib/aws-sdk-codestarconnections/types.rb', line 160 class CreateHostInput < Struct.new( :name, :provider_type, :provider_endpoint, :vpc_configuration, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
      160 161 162 163 164 165 166 167 168  | 
    
      # File 'lib/aws-sdk-codestarconnections/types.rb', line 160 class CreateHostInput < Struct.new( :name, :provider_type, :provider_endpoint, :vpc_configuration, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_configuration ⇒ Types::VpcConfiguration
The VPC configuration to be provisioned for the host. A VPC must be configured and the infrastructure to be represented by the host must already be connected to the VPC.
      160 161 162 163 164 165 166 167 168  | 
    
      # File 'lib/aws-sdk-codestarconnections/types.rb', line 160 class CreateHostInput < Struct.new( :name, :provider_type, :provider_endpoint, :vpc_configuration, :tags) SENSITIVE = [] include Aws::Structure end  |