Class: Aws::Proton::Types::UpdateServiceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Proton::Types::UpdateServiceInput
- Defined in:
- gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb
Overview
Note:
When making an API call, you may pass UpdateServiceInput data as a hash:
{
description: "Description",
name: "ResourceName", # required
spec: "SpecContents",
}
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.
5770 5771 5772 5773 5774 5775 5776 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5770 class UpdateServiceInput < Struct.new( :description, :name, :spec) SENSITIVE = [:description, :spec] include Aws::Structure end |
#name ⇒ String
The name of the service to edit.
5770 5771 5772 5773 5774 5775 5776 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5770 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 Administrator Guide or the Proton User Guide.
5770 5771 5772 5773 5774 5775 5776 |
# File 'gems/aws-sdk-proton/lib/aws-sdk-proton/types.rb', line 5770 class UpdateServiceInput < Struct.new( :description, :name, :spec) SENSITIVE = [:description, :spec] include Aws::Structure end |