You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ElasticsearchService::Types::UpdatePackageRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdatePackageRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  package_id: "PackageID", # required
  package_source: { # required
    s3_bucket_name: "S3BucketName",
    s3_key: "S3Key",
  },
  package_description: "PackageDescription",
  commit_message: "CommitMessage",
}

Container for request parameters to UpdatePackage operation.

Instance Attribute Summary collapse

Instance Attribute Details

#commit_messageString

An info message for the new version which will be shown as part of GetPackageVersionHistoryResponse.

Returns:

  • (String)

    An info message for the new version which will be shown as part of GetPackageVersionHistoryResponse.

#package_descriptionString

New description of the package.

Returns:

  • (String)

    New description of the package.

#package_idString

Unique identifier for the package.

Returns:

  • (String)

    Unique identifier for the package.

#package_sourceTypes::PackageSource

The S3 location for importing the package specified as S3BucketName and S3Key

Returns:

  • (Types::PackageSource)

    The S3 location for importing the package specified as S3BucketName and S3Key

    .