AWSLogsPutRetentionPolicyRequest

Objective-C

@interface AWSLogsPutRetentionPolicyRequest

Swift

class AWSLogsPutRetentionPolicyRequest
  • The name of the log group.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable logGroupName;

    Swift

    var logGroupName: String? { get set }
  • The number of days to retain the log events in the specified log group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1096, 1827, 2192, 2557, 2922, 3288, and 3653.

    To set a log group so that its log events do not expire, use DeleteRetentionPolicy.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable retentionInDays;

    Swift

    var retentionInDays: NSNumber? { get set }