Class: Aws::CodeDeploy::Types::ListApplicationRevisionsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeDeploy::Types::ListApplicationRevisionsInput
- Defined in:
- gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb
Overview
Represents the input of a ListApplicationRevisions
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_name ⇒ String
The name of an CodeDeploy application associated with the user or Amazon Web Services account.
-
#deployed ⇒ String
Whether to list revisions based on whether the revision is the target revision of a deployment group:.
-
#next_token ⇒ String
An identifier returned from the previous
ListApplicationRevisions
call. -
#s3_bucket ⇒ String
An Amazon S3 bucket name to limit the search for revisions.
-
#s3_key_prefix ⇒ String
A key prefix for the set of Amazon S3 objects to limit the search for revisions.
-
#sort_by ⇒ String
The column name to use to sort the list results:.
-
#sort_order ⇒ String
The order in which to sort the list results:.
Instance Attribute Details
#application_name ⇒ String
The name of an CodeDeploy application associated with the user or Amazon Web Services account.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |
#deployed ⇒ String
Whether to list revisions based on whether the revision is the target revision of a deployment group:
include
: List revisions that are target revisions of a deployment group.exclude
: Do not list revisions that are target revisions of a deployment group.ignore
: List all revisions.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An identifier returned from the previous ListApplicationRevisions
call. It can be used to return the next set of applications in the
list.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |
#s3_bucket ⇒ String
An Amazon S3 bucket name to limit the search for revisions.
If set to null, all of the user's buckets are searched.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
A key prefix for the set of Amazon S3 objects to limit the search for revisions.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |
#sort_by ⇒ String
The column name to use to sort the list results:
registerTime
: Sort by the time the revisions were registered with CodeDeploy.firstUsedTime
: Sort by the time the revisions were first used in a deployment.lastUsedTime
: Sort by the time the revisions were last used in a deployment.
If not specified or set to null, the results are returned in an arbitrary order.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |
#sort_order ⇒ String
The order in which to sort the list results:
ascending
: ascending order.descending
: descending order.
If not specified, the results are sorted in ascending order.
If set to null, the results are sorted in an arbitrary order.
3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 |
# File 'gems/aws-sdk-codedeploy/lib/aws-sdk-codedeploy/types.rb', line 3539 class ListApplicationRevisionsInput < Struct.new( :application_name, :sort_by, :sort_order, :s3_bucket, :s3_key_prefix, :deployed, :next_token) SENSITIVE = [] include Aws::Structure end |