Skip to content

Commit

Permalink
Release v1.38.3 (2021-03-23) (#3831)
Browse files Browse the repository at this point in the history
Release v1.38.3 (2021-03-23)
===

### Service Client Updates
* `service/ce`: Updates service API and documentation
* `service/fis`: Updates service API
* `service/gamelift`: Updates service API and documentation
  * GameLift adds support for using event notifications to monitor game session placements. Specify an SNS topic or use CloudWatch Events to track activity for a game session queue.
* `service/iam`: Updates service documentation
  * Documentation updates for IAM operations and descriptions.
* `service/redshift`: Updates service API and documentation
  * Removed APIs to control AQUA on clusters.
  • Loading branch information
aws-sdk-go-automation authored Mar 23, 2021
1 parent b841655 commit e2d6cb4
Show file tree
Hide file tree
Showing 15 changed files with 350 additions and 436 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.38.3 (2021-03-23)
===

### Service Client Updates
* `service/ce`: Updates service API and documentation
* `service/fis`: Updates service API
* `service/gamelift`: Updates service API and documentation
* GameLift adds support for using event notifications to monitor game session placements. Specify an SNS topic or use CloudWatch Events to track activity for a game session queue.
* `service/iam`: Updates service documentation
* Documentation updates for IAM operations and descriptions.
* `service/redshift`: Updates service API and documentation
* Removed APIs to control AQUA on clusters.

Release v1.38.2 (2021-03-22)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.38.2"
const SDKVersion = "1.38.3"
45 changes: 34 additions & 11 deletions models/apis/ce/2017-10-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -585,17 +585,32 @@
"Name":{"shape":"CostCategoryName"},
"RuleVersion":{"shape":"CostCategoryRuleVersion"},
"Rules":{"shape":"CostCategoryRulesList"},
"ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"}
"ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"},
"DefaultValue":{"shape":"CostCategoryValue"}
}
},
"CostCategoryInheritedValueDimension":{
"type":"structure",
"members":{
"DimensionName":{"shape":"CostCategoryInheritedValueDimensionName"},
"DimensionKey":{"shape":"GenericString"}
}
},
"CostCategoryInheritedValueDimensionName":{
"type":"string",
"enum":[
"LINKED_ACCOUNT_NAME",
"TAG"
]
},
"CostCategoryMaxResults":{
"type":"integer",
"max":100,
"min":1
},
"CostCategoryName":{
"type":"string",
"max":255,
"max":50,
"min":1,
"pattern":"^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(?<! )$"
},
Expand Down Expand Up @@ -623,7 +638,8 @@
"EffectiveEnd":{"shape":"ZonedDateTime"},
"NumberOfRules":{"shape":"NonNegativeInteger"},
"ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"},
"Values":{"shape":"CostCategoryValuesList"}
"Values":{"shape":"CostCategoryValuesList"},
"DefaultValue":{"shape":"CostCategoryValue"}
}
},
"CostCategoryReferencesList":{
Expand All @@ -632,15 +648,20 @@
},
"CostCategoryRule":{
"type":"structure",
"required":[
"Value",
"Rule"
],
"members":{
"Value":{"shape":"CostCategoryValue"},
"Rule":{"shape":"Expression"}
"Rule":{"shape":"Expression"},
"InheritedValue":{"shape":"CostCategoryInheritedValueDimension"},
"Type":{"shape":"CostCategoryRuleType"}
}
},
"CostCategoryRuleType":{
"type":"string",
"enum":[
"REGULAR",
"INHERITED_VALUE"
]
},
"CostCategoryRuleVersion":{
"type":"string",
"enum":["CostCategoryExpression.v1"]
Expand All @@ -664,7 +685,7 @@
},
"CostCategoryValue":{
"type":"string",
"max":255,
"max":50,
"min":1,
"pattern":"^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(?<! )$"
},
Expand Down Expand Up @@ -764,7 +785,8 @@
"members":{
"Name":{"shape":"CostCategoryName"},
"RuleVersion":{"shape":"CostCategoryRuleVersion"},
"Rules":{"shape":"CostCategoryRulesList"}
"Rules":{"shape":"CostCategoryRulesList"},
"DefaultValue":{"shape":"CostCategoryValue"}
}
},
"CreateCostCategoryDefinitionResponse":{
Expand Down Expand Up @@ -2340,7 +2362,8 @@
"members":{
"CostCategoryArn":{"shape":"Arn"},
"RuleVersion":{"shape":"CostCategoryRuleVersion"},
"Rules":{"shape":"CostCategoryRulesList"}
"Rules":{"shape":"CostCategoryRulesList"},
"DefaultValue":{"shape":"CostCategoryValue"}
}
},
"UpdateCostCategoryDefinitionResponse":{
Expand Down
27 changes: 25 additions & 2 deletions models/apis/ce/2017-10-25/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,18 @@
"DescribeCostCategoryDefinitionResponse$CostCategory": null
}
},
"CostCategoryInheritedValueDimension": {
"base": "<p>When creating or updating a cost category, you can define the <code>CostCategoryRule</code> rule type as <code>INHERITED_VALUE</code>. This rule type adds the flexibility of defining a rule that dynamically inherits the cost category value from the dimension value defined by <code>CostCategoryInheritedValueDimension</code>. For example, if you wanted to dynamically group costs based on the value of a specific tag key, you would first choose an inherited value rule type, then choose the tag dimension and specify the tag key to use.</p>",
"refs": {
"CostCategoryRule$InheritedValue": "<p>The value the line item will be categorized as, if the line item contains the matched dimension.</p>"
}
},
"CostCategoryInheritedValueDimensionName": {
"base": null,
"refs": {
"CostCategoryInheritedValueDimension$DimensionName": "<p>The name of dimension for which to group costs.</p> <p>If you specify <code>LINKED_ACCOUNT_NAME</code>, the cost category value will be based on account name. If you specify <code>TAG</code>, the cost category value will be based on the value of the specified tag key.</p>"
}
},
"CostCategoryMaxResults": {
"base": null,
"refs": {
Expand Down Expand Up @@ -227,6 +239,12 @@
"CostCategoryRulesList$member": null
}
},
"CostCategoryRuleType": {
"base": null,
"refs": {
"CostCategoryRule$Type": "<p>You can define the <code>CostCategoryRule</code> rule type as either <code>REGULAR</code> or <code>INHERITED_VALUE</code>. The <code>INHERITED_VALUE</code> rule type adds the flexibility of defining a rule that dynamically inherits the cost category value from the dimension value defined by <code>CostCategoryInheritedValueDimension</code>. For example, if you wanted to dynamically group costs based on the value of a specific tag key, you would first choose an inherited value rule type, then choose the tag dimension and specify the tag key to use.</p>"
}
},
"CostCategoryRuleVersion": {
"base": "<p>The rule schema version in this particular Cost Category.</p>",
"refs": {
Expand Down Expand Up @@ -256,10 +274,14 @@
}
},
"CostCategoryValue": {
"base": "<p>The value a line item will be categorized as, if it matches the rule.</p>",
"base": "<p>The default value for the cost category.</p>",
"refs": {
"CostCategory$DefaultValue": null,
"CostCategoryReference$DefaultValue": null,
"CostCategoryRule$Value": null,
"CostCategoryValuesList$member": null
"CostCategoryValuesList$member": null,
"CreateCostCategoryDefinitionRequest$DefaultValue": null,
"UpdateCostCategoryDefinitionRequest$DefaultValue": null
}
},
"CostCategoryValues": {
Expand Down Expand Up @@ -609,6 +631,7 @@
"AnomalySubscription$SubscriptionArn": "<p> The <code>AnomalySubscription</code> Amazon Resource Name (ARN). </p>",
"AnomalySubscription$AccountId": "<p> Your unique account identifier. </p>",
"AnomalySubscription$SubscriptionName": "<p> The name for the subscription. </p>",
"CostCategoryInheritedValueDimension$DimensionKey": "<p>The key to extract cost category values.</p>",
"CreateAnomalyMonitorResponse$MonitorArn": "<p> The unique identifier of your newly created cost anomaly detection monitor.</p>",
"CreateAnomalySubscriptionResponse$SubscriptionArn": "<p> The unique identifier of your newly created cost anomaly subscription. </p>",
"CurrentInstance$ResourceId": "<p>Resource ID of the current instance.</p>",
Expand Down
4 changes: 2 additions & 2 deletions models/apis/fis/2020-12-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@
},
"ExperimentActionParameter":{
"type":"string",
"max":64,
"max":1024,
"pattern":"[\\S]+"
},
"ExperimentActionParameterMap":{
Expand Down Expand Up @@ -636,7 +636,7 @@
},
"ExperimentTemplateActionParameter":{
"type":"string",
"max":64,
"max":1024,
"pattern":"[\\S]+"
},
"ExperimentTemplateActionParameterMap":{
Expand Down
23 changes: 21 additions & 2 deletions models/apis/gamelift/2015-10-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@
{"shape":"InvalidRequestException"},
{"shape":"UnauthorizedException"},
{"shape":"LimitExceededException"},
{"shape":"NotFoundException"},
{"shape":"TaggingFailedException"}
]
},
Expand Down Expand Up @@ -1814,6 +1815,8 @@
"Destinations":{"shape":"GameSessionQueueDestinationList"},
"FilterConfiguration":{"shape":"FilterConfiguration"},
"PriorityConfiguration":{"shape":"PriorityConfiguration"},
"CustomEventData":{"shape":"QueueCustomEventData"},
"NotificationTarget":{"shape":"QueueSnsArnStringModel"},
"Tags":{"shape":"TagList"}
}
},
Expand Down Expand Up @@ -3238,7 +3241,9 @@
"PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
"Destinations":{"shape":"GameSessionQueueDestinationList"},
"FilterConfiguration":{"shape":"FilterConfiguration"},
"PriorityConfiguration":{"shape":"PriorityConfiguration"}
"PriorityConfiguration":{"shape":"PriorityConfiguration"},
"CustomEventData":{"shape":"QueueCustomEventData"},
"NotificationTarget":{"shape":"QueueSnsArnStringModel"}
}
},
"GameSessionQueueArn":{
Expand Down Expand Up @@ -4062,6 +4067,18 @@
"type":"list",
"member":{"shape":"ArnStringModel"}
},
"QueueCustomEventData":{
"type":"string",
"max":256,
"min":0,
"pattern":"[\\s\\S]*"
},
"QueueSnsArnStringModel":{
"type":"string",
"max":300,
"min":0,
"pattern":"[a-zA-Z0-9:_-]*(\\.fifo)?"
},
"RegisterGameServerInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -4703,7 +4720,9 @@
"PlayerLatencyPolicies":{"shape":"PlayerLatencyPolicyList"},
"Destinations":{"shape":"GameSessionQueueDestinationList"},
"FilterConfiguration":{"shape":"FilterConfiguration"},
"PriorityConfiguration":{"shape":"PriorityConfiguration"}
"PriorityConfiguration":{"shape":"PriorityConfiguration"},
"CustomEventData":{"shape":"QueueCustomEventData"},
"NotificationTarget":{"shape":"QueueSnsArnStringModel"}
}
},
"UpdateGameSessionQueueOutput":{
Expand Down
Loading

0 comments on commit e2d6cb4

Please sign in to comment.