ConnectorConfig¶
| Field | Type | Description |
|---|---|---|
| name | string | The name of the connector. |
| cloudwatch_connector_config |
Example¶
JSON
{
"cloudwatch_connector_config": {
"region": "us-east-1",
"role_arn": "arn:aws:iam::123456789012:role/CloudWatchConnectorRole"
},
"name": "example-connector"
}
ConnectorConfig.CloudwatchConnectorConfig¶
| Field | Type | Description |
|---|---|---|
| region | string | The AWS region for the CloudWatch connector. |
| role_arn | string | The role ARN for the CloudWatch connector. This role will be assumed by the connector in order to put metrics into CloudWatch. |
Example¶
JSON
{
"region": "us-east-1",
"role_arn": "arn:aws:iam::123456789012:role/CloudWatchConnectorRole"
}