ListDeploymentTargetsInput

public struct ListDeploymentTargetsInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique ID of a deployment.

    Declaration

    Swift

    public let deploymentId: String?
  • A token identifier returned from the previous ListDeploymentTargets call. It can be used to return the next set of deployment targets in the list.

    Declaration

    Swift

    public let nextToken: String?
  • A key used to filter the returned targets. The two valid values are: TargetStatus - A TargetStatus filter string can be Failed, InProgress, Pending, Ready, Skipped, Succeeded, or Unknown. ServerInstanceLabel - A ServerInstanceLabel filter string can be Blue or Green.

    Declaration

    Swift

    public let targetFilters: [TargetFilterName : [String]]?
  • Undocumented

    Declaration

    Swift

    public init(deploymentId: String? = nil, nextToken: String? = nil, targetFilters: [TargetFilterName : [String]]? = nil)