Class: Aws::Proton::Types::UpdateServiceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::UpdateServiceInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-proton/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:description, :spec]
Instance Attribute Summary collapse
-
#description ⇒ String
The edited service description.
-
#name ⇒ String
The name of the service to edit.
-
#spec ⇒ String
Lists the service instances to add and the existing service instances to remain.
Instance Attribute Details
#description ⇒ String
The edited service description.
6253 6254 6255 6256 6257 6258 6259 |
# File 'lib/aws-sdk-proton/types.rb', line 6253 class UpdateServiceInput < Struct.new( :description, :name, :spec) SENSITIVE = [:description, :spec] include Aws::Structure end |
#name ⇒ String
The name of the service to edit.
6253 6254 6255 6256 6257 6258 6259 |
# File 'lib/aws-sdk-proton/types.rb', line 6253 class UpdateServiceInput < Struct.new( :description, :name, :spec) SENSITIVE = [:description, :spec] include Aws::Structure end |
#spec ⇒ String
Lists the service instances to add and the existing service instances to remain. Omit the existing service instances to delete from the list. *Don’t* include edits to the existing service instances or pipeline. For more information, see [Edit a service] in the *Proton User Guide*.
[1]: docs.aws.amazon.com/proton/latest/userguide/ag-svc-update.html
6253 6254 6255 6256 6257 6258 6259 |
# File 'lib/aws-sdk-proton/types.rb', line 6253 class UpdateServiceInput < Struct.new( :description, :name, :spec) SENSITIVE = [:description, :spec] include Aws::Structure end |