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.
4143 4144 4145 4146 4147 4148 4149 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4143 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.
4143 4144 4145 4146 4147 4148 4149 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4143 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.
4143 4144 4145 4146 4147 4148 4149 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4143 class GetPackageVersionHistoryResponse < Struct.new( :package_id, :package_version_history_list, :next_token) SENSITIVE = [] include Aws::Structure end |