ListApplicationRevisionsInput

public struct ListApplicationRevisionsInput : AWSShape
extension CodeDeploy.ListApplicationRevisionsInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of an AWS CodeDeploy application associated with the IAM user or AWS account.

    Declaration

    Swift

    public let applicationName: 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.

    Declaration

    Swift

    public let deployed: ListStateFilterAction?
  • An identifier returned from the previous ListApplicationRevisions call. It can be used to return the next set of applications in the list.

    Declaration

    Swift

    public let nextToken: String?
  • An Amazon S3 bucket name to limit the search for revisions. If set to null, all of the user’s buckets are searched.

    Declaration

    Swift

    public let s3Bucket: String?
  • A key prefix for the set of Amazon S3 objects to limit the search for revisions.

    Declaration

    Swift

    public let s3KeyPrefix: String?
  • The column name to use to sort the list results: registerTime: Sort by the time the revisions were registered with AWS 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.

    Declaration

    Swift

    public let sortBy: ApplicationRevisionSortBy?
  • 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.

    Declaration

    Swift

    public let sortOrder: SortOrder?
  • Undocumented

    Declaration

    Swift

    public init(applicationName: String, deployed: ListStateFilterAction? = nil, nextToken: String? = nil, s3Bucket: String? = nil, s3KeyPrefix: String? = nil, sortBy: ApplicationRevisionSortBy? = nil, sortOrder: SortOrder? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws