Class: Aws::ElasticsearchService::Types::CancelElasticsearchServiceSoftwareUpdateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::CancelElasticsearchServiceSoftwareUpdateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Note:
When making an API call, you may pass CancelElasticsearchServiceSoftwareUpdateRequest data as a hash:
{
domain_name: "DomainName", # required
}
Container for the parameters to the `CancelElasticsearchServiceSoftwareUpdate` operation. Specifies the name of the Elasticsearch domain that you wish to cancel a service software update on.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The name of the domain that you want to stop the latest service software update on.
Instance Attribute Details
#domain_name ⇒ String
The name of the domain that you want to stop the latest service software update on.
609 610 611 612 613 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 609 class CancelElasticsearchServiceSoftwareUpdateRequest < Struct.new( :domain_name) SENSITIVE = [] include Aws::Structure end |