DescribePoliciesType

public struct DescribePoliciesType : AWSShape
extension AutoScaling.DescribePoliciesType: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

    public let autoScalingGroupName: String?
  • The maximum number of items to be returned with each 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 policies. If you omit this parameter, all policies are described. If a group name is provided, the results are limited to that group. This list is limited to 50 items. If you specify an unknown policy name, it is ignored with no error.

    Declaration

    Swift

    public let policyNames: [String]?
  • One or more policy types. The valid values are SimpleScaling, StepScaling, and TargetTrackingScaling.

    Declaration

    Swift

    public let policyTypes: [String]?
  • Undocumented

    Declaration

    Swift

    public init(autoScalingGroupName: String? = nil, maxRecords: Int? = nil, nextToken: String? = nil, policyNames: [String]? = nil, policyTypes: [String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws