ListDeploymentsInput

public struct ListDeploymentsInput : AWSShape
extension CodeDeploy.ListDeploymentsInput: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of an AWS CodeDeploy application associated with the IAM user or AWS account. If applicationName is specified, then deploymentGroupName must be specified. If it is not specified, then deploymentGroupName must not be specified.

    Declaration

    Swift

    public let applicationName: String?
  • A time range (start and end) for returning a subset of the list of deployments.

    Declaration

    Swift

    public let createTimeRange: TimeRange?
  • The name of a deployment group for the specified application. If deploymentGroupName is specified, then applicationName must be specified. If it is not specified, then applicationName must not be specified.

    Declaration

    Swift

    public let deploymentGroupName: String?
  • The unique ID of an external resource for returning deployments linked to the external resource.

    Declaration

    Swift

    public let externalId: String?
  • A subset of deployments to list by status: Created: Include created deployments in the resulting list. Queued: Include queued deployments in the resulting list. In Progress: Include in-progress deployments in the resulting list. Succeeded: Include successful deployments in the resulting list. Failed: Include failed deployments in the resulting list. Stopped: Include stopped deployments in the resulting list.

    Declaration

    Swift

    public let includeOnlyStatuses: [DeploymentStatus]?
  • An identifier returned from the previous list deployments call. It can be used to return the next set of deployments in the list.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(applicationName: String? = nil, createTimeRange: TimeRange? = nil, deploymentGroupName: String? = nil, externalId: String? = nil, includeOnlyStatuses: [DeploymentStatus]? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws