

# CloudWatch \$1 Modify Log Retention Period
<a name="management-monitoring-cloudwatch-modify-log-retention-period"></a>

Modify the retention period for Amazon CloudWatch log groups. This change performs direct API actions whether or not the CloudWatch log group is part of a stack, which can cause stack drift.

**Full classification:** Management \$1 Monitoring and notification \$1 CloudWatch \$1 Modify log retention period

## Change Type Details
<a name="ct-0vfx8rwd1mcnn-MMCm-table"></a>


****  

|  |  | 
| --- |--- |
| Change type ID | ct-0vfx8rwd1mcnn | 
| Current version | 1.0 | 
| Expected execution duration | 60 minutes | 
| AWS approval | Required | 
| Customer approval | Not required | 
| Execution mode | Automated | 

## Additional Information
<a name="management-monitoring-cloudwatch-modify-log-retention-period-info"></a>

### Modify log retention period
<a name="ex-cw-modify-log-retention-period-col"></a>

#### Modifying log retention period with the console
<a name="cw-modify-log-retention-period-con"></a>

The following shows this change type in the AMS console.

![\[alt text not found\]](http://docs.aws.amazon.com/managedservices/latest/ctref/images/guiModifyLogRetentionPeriodCT.png)


How it works:

1. Navigate to the **Create RFC** page: In the left navigation pane of the AMS console click **RFCs** to open the RFCs list page, and then click **Create RFC**.

1. Choose a popular change type (CT) in the default **Browse change types** view, or select a CT in the **Choose by category** view.
   + **Browse by change type**: You can click on a popular CT in the **Quick create** area to immediately open the **Run RFC** page. Note that you cannot choose an older CT version with quick create.

     To sort CTs, use the **All change types** area in either the **Card** or **Table** view. In either view, select a CT and then click **Create RFC** to open the **Run RFC** page. If applicable, a **Create with older version** option appears next to the **Create RFC** button.
   + **Choose by category**: Select a category, subcategory, item, and operation and the CT details box opens with an option to **Create with older version** if applicable. Click **Create RFC** to open the **Run RFC** page.

1. On the **Run RFC** page, open the CT name area to see the CT details box. A **Subject** is required (this is filled in for you if you choose your CT in the **Browse change types** view). Open the **Additional configuration** area to add information about the RFC.

   In the **Execution configuration** area, use available drop-down lists or enter values for the required parameters. To configure optional execution parameters, open the **Additional configuration** area.

1. When finished, click **Run**. If there are no errors, the **RFC successfully created** page displays with the submitted RFC details, and the initial **Run output**. 

1. Open the **Run parameters** area to see the configurations you submitted. Refresh the page to update the RFC execution status. Optionally, cancel the RFC or create a copy of it with the options at the top of the page.

#### Modifying log retention period with the CLI
<a name="cw-modify-log-retention-period-cli"></a>

How it works:

1. Use either the Inline Create (you issue a `create-rfc` command with all RFC and execution parameters included), or Template Create (you create two JSON files, one for the RFC parameters and one for the execution parameters) and issue the `create-rfc` command with the two files as input. Both methods are described here.

1. Submit the RFC: `aws amscm submit-rfc --rfc-id ID` command with the returned RFC ID.

   Monitor the RFC: `aws amscm get-rfc --rfc-id ID` command.

To check the change type version, use this command:

```
aws amscm list-change-type-version-summaries --filter Attribute=ChangeTypeId,Value=CT_ID
```
**Note**  
You can use any `CreateRfc` parameters with any RFC whether or not they are part of the schema for the change type. For example, to get notifications when the RFC status changes, add this line, `--notification "{\"Email\": {\"EmailRecipients\" : [\"email@example.com\"]}}"` to the RFC parameters part of the request (not the execution parameters). For a list of all CreateRfc parameters, see the [AMS Change Management API Reference](https://docs.aws.amazon.com/managedservices/latest/ApiReference-cm/API_CreateRfc.html).

*INLINE CREATE*:

Issue the create RFC command with execution parameters provided inline (escape quotation marks when providing execution parameters inline), and then submit the returned RFC ID. For example, you can replace the contents with something like this:

```
aws amscm create-rfc --change-type-id "ct-0vfx8rwd1mcnn" --change-type-version "1.0" --title "Modify CloudWatch Log Retention" --execution-parameters "{\"DocumentName\":\"AWSManagedServices-ModifyCloudWatchLogRetentionPeriod\",\"Parameters\":{\"LogGroupNames\":[\"LOG_GROUP_NAME\"],\"RetentionDays\":\"365\"},\"Region\":\"REGION\"}"
```

```
aws amscm create-rfc --change-type-id "ct-0vfx8rwd1mcnn" --change-type-version "1.0" --title "Modify CloudWatch Log Retention" --execution-parameters "{\"DocumentName\":\"AWSManagedServices-ModifyCloudWatchLogRetentionPeriod\",\"Parameters\":{\"LogGroupNames\":[\"LOG_GROUP_NAME_1\",\"LOG_GROUP_NAME_2\"],\"RetentionDays\":\"90\"},\"Region\":\"REGION\"}"
```

*TEMPLATE CREATE*:

1. Output the execution parameters JSON schema for this change type to a file in your current folder; this example names it validateModifyLogRetention.json:

   ```
   aws amscm get-change-type-version --change-type-id "ct-0vfx8rwd1mcnn" --query "ChangeTypeVersion.ExecutionInputSchema" --output text > validateModifyLogRetention.json
   ```

1. Modify and save the validateModifyLogRetention.json file. For example, you can replace the contents with something like this:

   ```
   {
     "DocumentName": "AWSManagedServices-ModifyCloudWatchLogRetentionPeriod",
     "Region": "REGION",
     "Parameters": {
       "LogGroupNames": ["LOG_GROUP_NAME"],
       "RetentionDays": "365"
     }
   }
   ```

   ```
   {
     "DocumentName": "AWSManagedServices-ModifyCloudWatchLogRetentionPeriod",
     "Parameters": {
       "LogGroupNames": [
         "LOG_GROUP_NAME_1",
         "LOG_GROUP_NAME_2"
       ],
       "RetentionDays": "90"
     },
     "Region": "REGION"
   }
   ```

1. Output the JSON template for CreateRfc to a file in your current folder; this example names it ModifyLogRetentionRfc.json:

   ```
   aws amscm create-rfc --generate-cli-skeleton > ModifyLogRetentionRfc.json
   ```

1. Modify and save the ModifyLogRetentionRfc.json file. For example, you can replace the contents with something like this:

   ```
   {
   "ChangeTypeVersion": "1.0",
   "ChangeTypeId": "ct-0vfx8rwd1mcnn",
   "Title": "Modify CloudWatch Log Retention"
   }
   ```

1. Create the RFC, specifying the ModifyLogRetentionRfc file and the execution parameters file:

   ```
   aws amscm create-rfc --cli-input-json file://ModifyLogRetentionRfc.json --execution-parameters file://validateModifyLogRetention.json
   ```

   You receive the ID of the new RFC in the response and can use it to submit and monitor the RFC. Until you submit it, the RFC remains in the editing state and does not start.

#### Tips
<a name="ex-cw-modify-log-retention-period-tip"></a>

To learn more about CloudWatch, see [Enable or disable detailed monitoring for your instances](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-cloudwatch-new.html).

## Execution Input Parameters
<a name="management-monitoring-cloudwatch-modify-log-retention-period-input"></a>

For detailed information about the execution input parameters, see [Schema for Change Type ct-0vfx8rwd1mcnn](schemas.md#ct-0vfx8rwd1mcnn-schema-section).

## Example: Required Parameters
<a name="management-monitoring-cloudwatch-modify-log-retention-period-ex-min"></a>

```
{
  "DocumentName": "AWSManagedServices-ModifyCloudWatchLogRetentionPeriod",
  "Region": "us-east-1",
  "Parameters": {
    "LogGroupNames": [
      "my-log-group"
    ],
    "RetentionDays": "90"
  }
}
```

## Example: All Parameters
<a name="management-monitoring-cloudwatch-modify-log-retention-period-ex-max"></a>

```
Example not available.
```