Class: Aws::ElasticsearchService::Types::DissociatePackageRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Note:

When making an API call, you may pass DissociatePackageRequest data as a hash:

{
  package_id: "PackageID", # required
  domain_name: "DomainName", # required
}

Container for request parameters to ‘ DissociatePackage ` operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#domain_nameString

Name of the domain that you want to associate the package with.

Returns:

  • (String)


1379
1380
1381
1382
1383
1384
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1379

class DissociatePackageRequest < Struct.new(
  :package_id,
  :domain_name)
  SENSITIVE = []
  include Aws::Structure
end

#package_idString

Internal ID of the package that you want to associate with a domain. Use ‘DescribePackages` to find this value.

Returns:

  • (String)


1379
1380
1381
1382
1383
1384
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1379

class DissociatePackageRequest < Struct.new(
  :package_id,
  :domain_name)
  SENSITIVE = []
  include Aws::Structure
end