AWSAutoScalingDescribeScheduledActionsType
Objective-C
@interface AWSAutoScalingDescribeScheduledActionsType
Swift
class AWSAutoScalingDescribeScheduledActionsType
-
The name of the Auto Scaling group.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable autoScalingGroupName;
Swift
var autoScalingGroupName: String? { get set }
-
The latest scheduled start time to return. If scheduled action names are provided, this property is ignored.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable endTime;
Swift
var endTime: Date? { get set }
-
The maximum number of items to return with this call. The default value is
50
and the maximum value is100
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable maxRecords;
Swift
var maxRecords: NSNumber? { get set }
-
The token for the next set of items to return. (You received this token from a previous call.)
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
The names of one or more scheduled actions. If you omit this property, all scheduled actions are described. If you specify an unknown scheduled action, it is ignored with no error.
Array Members: Maximum number of 50 actions.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable scheduledActionNames;
Swift
var scheduledActionNames: [String]? { get set }
-
The earliest scheduled start time to return. If scheduled action names are provided, this property is ignored.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable startTime;
Swift
var startTime: Date? { get set }