DescribeScheduledActionsType

public struct DescribeScheduledActionsType : AWSShape
extension AutoScaling.DescribeScheduledActionsType: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the Auto Scaling group.

    Declaration

    Swift

    public let autoScalingGroupName: String?
  • The latest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.

    Declaration

    Swift

    public let endTime: TimeStamp?
  • The maximum number of items to return with this call. The default value is 50 and the maximum value is 100.

    Declaration

    Swift

    public let maxRecords: Int?
  • The token for the next set of items to return. (You received this token from a previous call.)

    Declaration

    Swift

    public let nextToken: String?
  • The names of one or more scheduled actions. You can specify up to 50 actions. If you omit this parameter, all scheduled actions are described. If you specify an unknown scheduled action, it is ignored with no error.

    Declaration

    Swift

    public let scheduledActionNames: [String]?
  • The earliest scheduled start time to return. If scheduled action names are provided, this parameter is ignored.

    Declaration

    Swift

    public let startTime: TimeStamp?
  • Undocumented

    Declaration

    Swift

    public init(autoScalingGroupName: String? = nil, endTime: TimeStamp? = nil, maxRecords: Int? = nil, nextToken: String? = nil, scheduledActionNames: [String]? = nil, startTime: TimeStamp? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws