Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions codegen/sdk/aws-models/auto-scaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -2581,6 +2581,9 @@
"target": "com.amazonaws.autoscaling#BlockDeviceMapping"
}
},
"com.amazonaws.autoscaling#BooleanType": {
"type": "boolean"
},
"com.amazonaws.autoscaling#BurstablePerformance": {
"type": "enum",
"members": {
Expand Down Expand Up @@ -2660,6 +2663,12 @@
"smithy.api#documentation": "<p>The name of the Auto Scaling group.</p>",
"smithy.api#required": {}
}
},
"WaitForTransitioningInstances": {
"target": "com.amazonaws.autoscaling#BooleanType",
"traits": {
"smithy.api#documentation": "<p>When cancelling an instance refresh, this indicates whether to wait for in-flight launches \n and terminations to complete. The default is true.</p>\n <p>When set to false, Amazon EC2 Auto Scaling cancels the instance refresh \n without waiting for any pending launches or terminations to complete.</p>"
}
}
}
},
Expand Down
185 changes: 184 additions & 1 deletion codegen/sdk/aws-models/cloudwatch.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,50 @@
}
}
},
"com.amazonaws.cloudwatch#AlarmContributor": {
"type": "structure",
"members": {
"ContributorId": {
"target": "com.amazonaws.cloudwatch#ContributorId",
"traits": {
"smithy.api#clientOptional": {},
"smithy.api#documentation": "<p>The unique identifier for this alarm contributor.</p>",
"smithy.api#required": {}
}
},
"ContributorAttributes": {
"target": "com.amazonaws.cloudwatch#ContributorAttributes",
"traits": {
"smithy.api#clientOptional": {},
"smithy.api#documentation": "<p>A map of attributes that describe the contributor, such as metric dimensions and other identifying characteristics.</p>",
"smithy.api#required": {}
}
},
"StateReason": {
"target": "com.amazonaws.cloudwatch#StateReason",
"traits": {
"smithy.api#clientOptional": {},
"smithy.api#documentation": "<p>An explanation for the contributor's current state, providing context about why it is in its current condition.</p>",
"smithy.api#required": {}
}
},
"StateTransitionedTimestamp": {
"target": "com.amazonaws.cloudwatch#Timestamp",
"traits": {
"smithy.api#documentation": "<p>The timestamp when the contributor last transitioned to its current state.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents an individual contributor to a multi-timeseries alarm, containing information about a specific time series and its contribution to the alarm's state.</p>"
}
},
"com.amazonaws.cloudwatch#AlarmContributors": {
"type": "list",
"member": {
"target": "com.amazonaws.cloudwatch#AlarmContributor"
}
},
"com.amazonaws.cloudwatch#AlarmDescription": {
"type": "string",
"traits": {
Expand All @@ -113,6 +157,12 @@
"smithy.api#documentation": "<p>The descriptive name for the alarm.</p>"
}
},
"AlarmContributorId": {
"target": "com.amazonaws.cloudwatch#ContributorId",
"traits": {
"smithy.api#documentation": "<p>The unique identifier of the alarm contributor associated with this history item, if applicable.</p>"
}
},
"AlarmType": {
"target": "com.amazonaws.cloudwatch#AlarmType",
"traits": {
Expand Down Expand Up @@ -142,6 +192,12 @@
"traits": {
"smithy.api#documentation": "<p>Data about the alarm, in JSON format.</p>"
}
},
"AlarmContributorAttributes": {
"target": "com.amazonaws.cloudwatch#ContributorAttributes",
"traits": {
"smithy.api#documentation": "<p>A map of attributes that describe the alarm contributor associated with this history item, providing context about the contributor's characteristics at the time of the event.</p>"
}
}
},
"traits": {
Expand Down Expand Up @@ -403,6 +459,24 @@
"target": "com.amazonaws.cloudwatch#AnomalyDetector"
}
},
"com.amazonaws.cloudwatch#AttributeName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 255
}
}
},
"com.amazonaws.cloudwatch#AttributeValue": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.cloudwatch#AwsQueryErrorMessage": {
"type": "string"
},
Expand Down Expand Up @@ -617,6 +691,30 @@
"smithy.api#httpError": 409
}
},
"com.amazonaws.cloudwatch#ContributorAttributes": {
"type": "map",
"key": {
"target": "com.amazonaws.cloudwatch#AttributeName"
},
"value": {
"target": "com.amazonaws.cloudwatch#AttributeValue"
},
"traits": {
"smithy.api#length": {
"min": 0,
"max": 30
}
}
},
"com.amazonaws.cloudwatch#ContributorId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.cloudwatch#Counts": {
"type": "list",
"member": {
Expand Down Expand Up @@ -1106,6 +1204,70 @@
"smithy.api#output": {}
}
},
"com.amazonaws.cloudwatch#DescribeAlarmContributors": {
"type": "operation",
"input": {
"target": "com.amazonaws.cloudwatch#DescribeAlarmContributorsInput"
},
"output": {
"target": "com.amazonaws.cloudwatch#DescribeAlarmContributorsOutput"
},
"errors": [
{
"target": "com.amazonaws.cloudwatch#InvalidNextToken"
},
{
"target": "com.amazonaws.cloudwatch#ResourceNotFoundException"
}
],
"traits": {
"smithy.api#documentation": "<p>Returns the information of the current alarm contributors that are in <code>ALARM</code> state. This operation returns details about the individual time series that contribute to the alarm's state.</p>"
}
},
"com.amazonaws.cloudwatch#DescribeAlarmContributorsInput": {
"type": "structure",
"members": {
"AlarmName": {
"target": "com.amazonaws.cloudwatch#AlarmName",
"traits": {
"smithy.api#clientOptional": {},
"smithy.api#documentation": "<p>The name of the alarm for which to retrieve contributor information.</p>",
"smithy.api#required": {}
}
},
"NextToken": {
"target": "com.amazonaws.cloudwatch#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token returned by a previous call to indicate that there is more data available.</p>"
}
}
},
"traits": {
"smithy.api#input": {}
}
},
"com.amazonaws.cloudwatch#DescribeAlarmContributorsOutput": {
"type": "structure",
"members": {
"AlarmContributors": {
"target": "com.amazonaws.cloudwatch#AlarmContributors",
"traits": {
"smithy.api#clientOptional": {},
"smithy.api#documentation": "<p>A list of alarm contributors that provide details about the individual time series contributing to the alarm's state.</p>",
"smithy.api#required": {}
}
},
"NextToken": {
"target": "com.amazonaws.cloudwatch#NextToken",
"traits": {
"smithy.api#documentation": "<p>The token that marks the start of the next batch of returned results.</p>"
}
}
},
"traits": {
"smithy.api#output": {}
}
},
"com.amazonaws.cloudwatch#DescribeAlarmHistory": {
"type": "operation",
"input": {
Expand Down Expand Up @@ -1138,6 +1300,12 @@
"smithy.api#documentation": "<p>The name of the alarm.</p>"
}
},
"AlarmContributorId": {
"target": "com.amazonaws.cloudwatch#ContributorId",
"traits": {
"smithy.api#documentation": "<p>The unique identifier of a specific alarm contributor to filter the alarm history results.</p>"
}
},
"AlarmTypes": {
"target": "com.amazonaws.cloudwatch#AlarmTypes",
"traits": {
Expand Down Expand Up @@ -2621,6 +2789,9 @@
{
"target": "com.amazonaws.cloudwatch#DeleteMetricStream"
},
{
"target": "com.amazonaws.cloudwatch#DescribeAlarmContributors"
},
{
"target": "com.amazonaws.cloudwatch#DescribeAlarmHistory"
},
Expand Down Expand Up @@ -3743,6 +3914,18 @@
"traits": {
"smithy.api#enumValue": "Action"
}
},
"AlarmContributorStateUpdate": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "AlarmContributorStateUpdate"
}
},
"AlarmContributorAction": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "AlarmContributorAction"
}
}
}
},
Expand Down Expand Up @@ -5854,7 +6037,7 @@
"ApplyOnTransformedLogs": {
"target": "com.amazonaws.cloudwatch#InsightRuleOnTransformedLogs",
"traits": {
"smithy.api#documentation": "<p>Specify <code>true</code> to have this rule evalute log events after they have been transformed by \n <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html\">Log transformation</a>. If you specify <code>true</code>, then the log events in log groups that have transformers will \n be evaluated by Contributor Insights after being transformed. Log groups that don't have\n transformers will still have their original log events evaluated by Contributor Insights.</p>\n <p>The default is <code>false</code>\n </p>\n <note>\n <p>If a log group has a transformer, and transformation fails for some log events, those log events won't be evaluated by\n Contributor Insights. For information about investigating log transformation failures, see\n <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Transformation-Errors-Metrics.html\">Transformation metrics and errors</a>.</p>\n </note>"
"smithy.api#documentation": "<p>Specify <code>true</code> to have this rule evaluate log events after they have been transformed by \n <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch-Logs-Transformation.html\">Log transformation</a>. If you specify <code>true</code>, then the log events in log groups that have transformers will \n be evaluated by Contributor Insights after being transformed. Log groups that don't have\n transformers will still have their original log events evaluated by Contributor Insights.</p>\n <p>The default is <code>false</code>\n </p>\n <note>\n <p>If a log group has a transformer, and transformation fails for some log events, those log events won't be evaluated by\n Contributor Insights. For information about investigating log transformation failures, see\n <a href=\"https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Transformation-Errors-Metrics.html\">Transformation metrics and errors</a>.</p>\n </note>"
}
}
},
Expand Down
Loading
Loading