Class: Aws::OpenSearchService::Types::GetPackageVersionHistoryResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::GetPackageVersionHistoryResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
Container for response returned by ‘GetPackageVersionHistory` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
When ‘nextToken` is returned, there are more results available.
-
#package_id ⇒ String
The unique identifier of the package.
-
#package_version_history_list ⇒ Array<Types::PackageVersionHistory>
A list of package versions, along with their creation time and commit message.
Instance Attribute Details
#next_token ⇒ String
When ‘nextToken` is returned, there are more results available. The value of `nextToken` is a unique pagination token for each page. Send the request again using the returned token to retrieve the next page.
4348 4349 4350 4351 4352 4353 4354 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4348 class GetPackageVersionHistoryResponse < Struct.new( :package_id, :package_version_history_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#package_id ⇒ String
The unique identifier of the package.
4348 4349 4350 4351 4352 4353 4354 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4348 class GetPackageVersionHistoryResponse < Struct.new( :package_id, :package_version_history_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#package_version_history_list ⇒ Array<Types::PackageVersionHistory>
A list of package versions, along with their creation time and commit message.
4348 4349 4350 4351 4352 4353 4354 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4348 class GetPackageVersionHistoryResponse < Struct.new( :package_id, :package_version_history_list, :next_token) SENSITIVE = [] include Aws::Structure end |