Skip to content

Commit

Permalink
Release v1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jun 5, 2018
1 parent c4ca268 commit 47309c0
Show file tree
Hide file tree
Showing 20 changed files with 2,533 additions and 190 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.14.1 (2018-06-05)
===

### Service Client Updates
* `service/ce`: Updates service API and documentation
* `service/polly`: Updates service API and documentation
* Amazon Polly adds new French voice - "Lea"
* `service/rds`: Updates service API and documentation
* This release adds customizable processor features for RDS instances.
* `service/secretsmanager`: Updates service documentation
* Documentation updates for secretsmanager
* `service/shield`: Updates service API and documentation
* DDoS Response Team access management for AWS Shield

Release v1.14.0 (2018-06-04)
===

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.14.0"
const SDKVersion = "1.14.1"
14 changes: 13 additions & 1 deletion models/apis/ce/2017-10-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@
"type":"string",
"enum":["PAYER"]
},
"AmortizedRecurringFee":{"type":"string"},
"AmortizedUpfrontFee":{"type":"string"},
"AttributeType":{"type":"string"},
"AttributeValue":{"type":"string"},
"Attributes":{
Expand Down Expand Up @@ -482,6 +484,7 @@
"key":{"shape":"MetricName"},
"value":{"shape":"MetricValue"}
},
"NetRISavings":{"type":"string"},
"NextPageToken":{"type":"string"},
"NonNegativeInteger":{
"type":"integer",
Expand All @@ -494,6 +497,7 @@
"CONVERTIBLE"
]
},
"OnDemandCostOfRIHoursUsed":{"type":"string"},
"OnDemandHours":{"type":"string"},
"PageSize":{"type":"integer"},
"PaymentOption":{
Expand Down Expand Up @@ -531,7 +535,13 @@
"UtilizationPercentage":{"shape":"UtilizationPercentage"},
"PurchasedHours":{"shape":"PurchasedHours"},
"TotalActualHours":{"shape":"TotalActualHours"},
"UnusedHours":{"shape":"UnusedHours"}
"UnusedHours":{"shape":"UnusedHours"},
"OnDemandCostOfRIHoursUsed":{"shape":"OnDemandCostOfRIHoursUsed"},
"NetRISavings":{"shape":"NetRISavings"},
"TotalPotentialRISavings":{"shape":"TotalPotentialRISavings"},
"AmortizedUpfrontFee":{"shape":"AmortizedUpfrontFee"},
"AmortizedRecurringFee":{"shape":"AmortizedRecurringFee"},
"TotalAmortizedFee":{"shape":"TotalAmortizedFee"}
}
},
"ReservationCoverageGroup":{
Expand Down Expand Up @@ -659,6 +669,8 @@
]
},
"TotalActualHours":{"type":"string"},
"TotalAmortizedFee":{"type":"string"},
"TotalPotentialRISavings":{"type":"string"},
"TotalRunningHours":{"type":"string"},
"UnusedHours":{"type":"string"},
"UtilizationByTime":{
Expand Down
38 changes: 37 additions & 1 deletion models/apis/ce/2017-10-25/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@
"ReservationPurchaseRecommendation$AccountScope": "<p>The account scope that AWS recommends that you purchase this instance for. For example, you can purchase this reservation for an entire organization in AWS Organizations.</p>"
}
},
"AmortizedRecurringFee": {
"base": null,
"refs": {
"ReservationAggregates$AmortizedRecurringFee": "<p>The monthly cost of your RI, amortized over the RI period.</p>"
}
},
"AmortizedUpfrontFee": {
"base": null,
"refs": {
"ReservationAggregates$AmortizedUpfrontFee": "<p>The upfront cost of your RI, amortized over the RI period.</p>"
}
},
"AttributeType": {
"base": null,
"refs": {
Expand Down Expand Up @@ -158,7 +170,7 @@
}
},
"Expression": {
"base": "<p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p> <ul> <li> <p>Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for <code>INSTANCE_TYPE==m4.xlarge OR INSTANCE_TYPE==c4.large</code>. The <code>Expression</code> for that looks like this:</p> <p> <code>{ \"Dimensions\": { \"Key\": \"INSTANCE_TYPE\", \"Values\": [ \"m4.xlarge\", “c4.large” ] } }</code> </p> <p>The list of dimension values are OR'd together to retrieve cost or usage data. You can create <code>Expression</code> and <code>DimensionValues</code> objects using either <code>with*</code> methods or <code>set*</code> methods in multiple lines. </p> </li> <li> <p>Compound dimension values with logical operations - You can use multiple <code>Expression</code> types and the logical operators <code>AND/OR/NOT</code> to create a list of one or more <code>Expression</code> objects. This allows you to filter on more advanced options. For example, you can filter on <code>((INSTANCE_TYPE == m4.large OR INSTANCE_TYPE == m3.large) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)</code>. The <code>Expression</code> for that looks like this:</p> <p> <code>{ \"And\": [ {\"Or\": [ {\"Dimensions\": { \"Key\": \"INSTANCE_TYPE\", \"Values\": [ \"m4.x.large\", \"c4.large\" ] }}, {\"Tag\": { \"Key\": \"TagName\", \"Values\": [\"Value1\"] } } ]}, {\"Not\": {\"dimensions\": { \"Key\": \"USAGE_TYPE\", \"Values\": [\"DataTransfer\"] }}} ] } </code> </p> <note> <p>Because each <code>Expression</code> can have only one operator, the service returns an error if more than one is specified. The following example shows an <code>Expression</code> object that creates an error.</p> </note> <p> <code> { \"And\": [ ... ], \"DimensionValues\": { \"Dimension\": \"USAGE_TYPE\", \"Values\": [ \"DataTransfer\" ] } } </code> </p> </li> </ul>",
"base": "<p>Use <code>Expression</code> to filter by cost or by usage. There are two patterns: </p> <ul> <li> <p>Simple dimension values - You can set the dimension name and values for the filters that you plan to use. For example, you can filter for <code>INSTANCE_TYPE==m4.xlarge OR INSTANCE_TYPE==c4.large</code>. The <code>Expression</code> for that looks like this:</p> <p> <code>{ \"Dimensions\": { \"Key\": \"INSTANCE_TYPE\", \"Values\": [ \"m4.xlarge\", “c4.large” ] } }</code> </p> <p>The list of dimension values are OR'd together to retrieve cost or usage data. You can create <code>Expression</code> and <code>DimensionValues</code> objects using either <code>with*</code> methods or <code>set*</code> methods in multiple lines. </p> </li> <li> <p>Compound dimension values with logical operations - You can use multiple <code>Expression</code> types and the logical operators <code>AND/OR/NOT</code> to create a list of one or more <code>Expression</code> objects. This allows you to filter on more advanced options. For example, you can filter on <code>((INSTANCE_TYPE == m4.large OR INSTANCE_TYPE == m3.large) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer)</code>. The <code>Expression</code> for that looks like this:</p> <p> <code>{ \"And\": [ {\"Or\": [ {\"Dimensions\": { \"Key\": \"INSTANCE_TYPE\", \"Values\": [ \"m4.x.large\", \"c4.large\" ] }}, {\"Tags\": { \"Key\": \"TagName\", \"Values\": [\"Value1\"] } } ]}, {\"Not\": {\"Dimensions\": { \"Key\": \"USAGE_TYPE\", \"Values\": [\"DataTransfer\"] }}} ] } </code> </p> <note> <p>Because each <code>Expression</code> can have only one operator, the service returns an error if more than one is specified. The following example shows an <code>Expression</code> object that creates an error.</p> </note> <p> <code> { \"And\": [ ... ], \"DimensionValues\": { \"Dimension\": \"USAGE_TYPE\", \"Values\": [ \"DataTransfer\" ] } } </code> </p> </li> </ul>",
"refs": {
"Expression$Not": "<p>Return results that don't match a <code>Dimension</code> object.</p>",
"Expressions$member": null,
Expand Down Expand Up @@ -404,6 +416,12 @@
"ResultByTime$Total": "<p>The total amount of cost or usage accrued during the time period.</p>"
}
},
"NetRISavings": {
"base": null,
"refs": {
"ReservationAggregates$NetRISavings": "<p>How much you saved due to purchasing and utilizing RIs. This is calculated by subtracting the <code>TotalAmortizedFee</code> from the <code>OnDemandCostOfRIHoursUsed</code>.</p>"
}
},
"NextPageToken": {
"base": null,
"refs": {
Expand Down Expand Up @@ -433,6 +451,12 @@
"EC2Specification$OfferingClass": "<p>Whether you want a recommendation for standard or convertible reservations.</p>"
}
},
"OnDemandCostOfRIHoursUsed": {
"base": null,
"refs": {
"ReservationAggregates$OnDemandCostOfRIHoursUsed": "<p>How much your RIs would cost if charged On-Demand rates.</p>"
}
},
"OnDemandHours": {
"base": null,
"refs": {
Expand Down Expand Up @@ -616,6 +640,18 @@
"ReservationAggregates$TotalActualHours": "<p>The total number of RI hours that you used.</p>"
}
},
"TotalAmortizedFee": {
"base": null,
"refs": {
"ReservationAggregates$TotalAmortizedFee": "<p>The total cost of your RI, amortized over the RI period.</p>"
}
},
"TotalPotentialRISavings": {
"base": null,
"refs": {
"ReservationAggregates$TotalPotentialRISavings": "<p>How much you could save if you use your entire reservation.</p>"
}
},
"TotalRunningHours": {
"base": null,
"refs": {
Expand Down
1 change: 1 addition & 0 deletions models/apis/polly/2016-06-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@
"Penelope",
"Chantal",
"Celine",
"Lea",
"Mathieu",
"Dora",
"Karl",
Expand Down
2 changes: 1 addition & 1 deletion models/apis/polly/2016-06-10/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@
}
},
"TextLengthExceededException": {
"base": "<p>The value of the \"Text\" parameter is longer than the accepted limits. The limit for input text is a maximum of 3000 characters total, of which no more than 1500 can be billed characters. SSML tags are not counted as billed characters.</p>",
"base": "<p>The value of the \"Text\" parameter is longer than the accepted limits. The limit for input text is a maximum of 6000 characters total, of which no more than 3000 can be billed characters. SSML tags are not counted as billed characters.</p>",
"refs": {
}
},
Expand Down
11 changes: 11 additions & 0 deletions models/apis/polly/2016-06-10/smoke.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"version": 1,
"defaultRegion": "us-west-2",
"testCases": [
{
"operationName": "DescribeVoices",
"input": {},
"errorExpectedFromService": false
}
]
}
67 changes: 56 additions & 11 deletions models/apis/rds/2014-10-31/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1792,6 +1792,21 @@
"locationName":"AvailabilityZone"
}
},
"AvailableProcessorFeature":{
"type":"structure",
"members":{
"Name":{"shape":"String"},
"DefaultValue":{"shape":"String"},
"AllowedValues":{"shape":"String"}
}
},
"AvailableProcessorFeatureList":{
"type":"list",
"member":{
"shape":"AvailableProcessorFeature",
"locationName":"AvailableProcessorFeature"
}
},
"BacktrackDBClusterMessage":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2087,7 +2102,8 @@
"EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
"EnablePerformanceInsights":{"shape":"BooleanOptional"},
"PerformanceInsightsKMSKeyId":{"shape":"String"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"}
}
},
"CreateDBInstanceReadReplicaMessage":{
Expand Down Expand Up @@ -2118,7 +2134,9 @@
"EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
"EnablePerformanceInsights":{"shape":"BooleanOptional"},
"PerformanceInsightsKMSKeyId":{"shape":"String"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"},
"UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}
}
},
"CreateDBInstanceReadReplicaResult":{
Expand Down Expand Up @@ -2676,7 +2694,8 @@
"IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"},
"PerformanceInsightsEnabled":{"shape":"BooleanOptional"},
"PerformanceInsightsKMSKeyId":{"shape":"String"},
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnabledCloudwatchLogsExports":{"shape":"LogTypeList"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"}
},
"wrapper":true
},
Expand Down Expand Up @@ -2947,7 +2966,8 @@
"KmsKeyId":{"shape":"String"},
"DBSnapshotArn":{"shape":"String"},
"Timezone":{"shape":"String"},
"IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"}
"IAMDatabaseAuthenticationEnabled":{"shape":"Boolean"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"}
},
"wrapper":true
},
Expand Down Expand Up @@ -4156,7 +4176,9 @@
"EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
"EnablePerformanceInsights":{"shape":"BooleanOptional"},
"PerformanceInsightsKMSKeyId":{"shape":"String"},
"CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"}
"CloudwatchLogsExportConfiguration":{"shape":"CloudwatchLogsExportConfiguration"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"},
"UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}
}
},
"ModifyDBInstanceResult":{
Expand Down Expand Up @@ -4511,7 +4533,8 @@
"MinIopsPerDbInstance":{"shape":"IntegerOptional"},
"MaxIopsPerDbInstance":{"shape":"IntegerOptional"},
"MinIopsPerGib":{"shape":"DoubleOptional"},
"MaxIopsPerGib":{"shape":"DoubleOptional"}
"MaxIopsPerGib":{"shape":"DoubleOptional"},
"AvailableProcessorFeatures":{"shape":"AvailableProcessorFeatureList"}
},
"wrapper":true
},
Expand Down Expand Up @@ -4606,7 +4629,8 @@
"StorageType":{"shape":"String"},
"CACertificateIdentifier":{"shape":"String"},
"DBSubnetGroupName":{"shape":"String"},
"PendingCloudwatchLogsExports":{"shape":"PendingCloudwatchLogsExports"}
"PendingCloudwatchLogsExports":{"shape":"PendingCloudwatchLogsExports"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"}
}
},
"PointInTimeRestoreNotEnabledFault":{
Expand All @@ -4620,6 +4644,20 @@
},
"exception":true
},
"ProcessorFeature":{
"type":"structure",
"members":{
"Name":{"shape":"String"},
"Value":{"shape":"String"}
}
},
"ProcessorFeatureList":{
"type":"list",
"member":{
"shape":"ProcessorFeature",
"locationName":"ProcessorFeature"
}
},
"PromoteReadReplicaDBClusterMessage":{
"type":"structure",
"required":["DBClusterIdentifier"],
Expand Down Expand Up @@ -5062,7 +5100,9 @@
"CopyTagsToSnapshot":{"shape":"BooleanOptional"},
"DomainIAMRoleName":{"shape":"String"},
"EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"},
"UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}
}
},
"RestoreDBInstanceFromDBSnapshotResult":{
Expand Down Expand Up @@ -5121,7 +5161,9 @@
"S3IngestionRoleArn":{"shape":"String"},
"EnablePerformanceInsights":{"shape":"BooleanOptional"},
"PerformanceInsightsKMSKeyId":{"shape":"String"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"},
"UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}
}
},
"RestoreDBInstanceFromS3Result":{
Expand Down Expand Up @@ -5161,7 +5203,9 @@
"Domain":{"shape":"String"},
"DomainIAMRoleName":{"shape":"String"},
"EnableIAMDatabaseAuthentication":{"shape":"BooleanOptional"},
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"}
"EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
"ProcessorFeatures":{"shape":"ProcessorFeatureList"},
"UseDefaultProcessorFeatures":{"shape":"BooleanOptional"}
}
},
"RestoreDBInstanceToPointInTimeResult":{
Expand Down Expand Up @@ -5463,7 +5507,8 @@
"ValidDBInstanceModificationsMessage":{
"type":"structure",
"members":{
"Storage":{"shape":"ValidStorageOptionsList"}
"Storage":{"shape":"ValidStorageOptionsList"},
"ValidProcessorFeatures":{"shape":"AvailableProcessorFeatureList"}
},
"wrapper":true
},
Expand Down

0 comments on commit 47309c0

Please sign in to comment.