Class: Aws::Proton::Types::CreateServiceInstanceInput
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Proton::Types::CreateServiceInstanceInput
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-proton/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 [:spec]
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The client token of the service instance to create.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the service instance to create.
 - 
  
    
      #service_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the service the service instance is added to.
 - 
  
    
      #spec  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The spec for the service instance you want to create.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An optional list of metadata items that you can associate with the Proton service instance.
 - 
  
    
      #template_major_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
To create a new major and minor version of the service template, exclude ‘major Version`.
 - 
  
    
      #template_minor_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
To create a new minor version of the service template, include a ‘major Version`.
 
Instance Attribute Details
#client_token ⇒ String
The client token of the service instance to create.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  | 
  
#name ⇒ String
The name of the service instance to create.
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  | 
  
#service_name ⇒ String
The name of the service the service instance is added to.
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  | 
  
#spec ⇒ String
The spec for the service instance you want to create.
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
An optional list of metadata items that you can associate with the Proton service instance. A tag is a key-value pair.
For more information, see [Proton resources and tagging] in the *Proton User Guide*.
[1]: docs.aws.amazon.com/proton/latest/userguide/resources.html
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  | 
  
#template_major_version ⇒ String
To create a new major and minor version of the service template, exclude ‘major Version`.
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  | 
  
#template_minor_version ⇒ String
To create a new minor version of the service template, include a ‘major Version`.
      1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174  | 
    
      # File 'lib/aws-sdk-proton/types.rb', line 1164 class CreateServiceInstanceInput < Struct.new( :client_token, :name, :service_name, :spec, :tags, :template_major_version, :template_minor_version) SENSITIVE = [:spec] include Aws::Structure end  |