Class: Aws::MigrationHub::Types::ListCreatedArtifactsResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::ListCreatedArtifactsResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-migrationhub/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_artifact_list ⇒ Array<Types::CreatedArtifact>
List of created artifacts up to the maximum number of results specified in the request.
-
#next_token ⇒ String
If there are more created artifacts than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
Instance Attribute Details
#created_artifact_list ⇒ Array<Types::CreatedArtifact>
List of created artifacts up to the maximum number of results specified in the request.
507 508 509 510 511 512 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 507 class ListCreatedArtifactsResult < Struct.new( :next_token, :created_artifact_list) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If there are more created artifacts than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
507 508 509 510 511 512 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 507 class ListCreatedArtifactsResult < Struct.new( :next_token, :created_artifact_list) SENSITIVE = [] include Aws::Structure end |