Class: Aws::OpenSearchService::Types::AssociatePackageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::AssociatePackageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Container for the request parameters to the ‘AssociatePackage` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#association_configuration ⇒ Types::PackageAssociationConfiguration
The configuration for associating a package with an Amazon OpenSearch Service domain.
-
#domain_name ⇒ String
Name of the domain to associate the package with.
-
#package_id ⇒ String
Internal ID of the package to associate with a domain.
-
#prerequisite_package_id_list ⇒ Array<String>
A list of package IDs that must be associated with the domain before the package specified in the request can be associated.
Instance Attribute Details
#association_configuration ⇒ Types::PackageAssociationConfiguration
The configuration for associating a package with an Amazon OpenSearch Service domain.
510 511 512 513 514 515 516 517 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 510 class AssociatePackageRequest < Struct.new( :package_id, :domain_name, :prerequisite_package_id_list, :association_configuration) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
Name of the domain to associate the package with.
510 511 512 513 514 515 516 517 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 510 class AssociatePackageRequest < Struct.new( :package_id, :domain_name, :prerequisite_package_id_list, :association_configuration) SENSITIVE = [] include Aws::Structure end |
#package_id ⇒ String
Internal ID of the package to associate with a domain. Use ‘DescribePackages` to find this value.
510 511 512 513 514 515 516 517 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 510 class AssociatePackageRequest < Struct.new( :package_id, :domain_name, :prerequisite_package_id_list, :association_configuration) SENSITIVE = [] include Aws::Structure end |
#prerequisite_package_id_list ⇒ Array<String>
A list of package IDs that must be associated with the domain before the package specified in the request can be associated.
510 511 512 513 514 515 516 517 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 510 class AssociatePackageRequest < Struct.new( :package_id, :domain_name, :prerequisite_package_id_list, :association_configuration) SENSITIVE = [] include Aws::Structure end |