Skip to content

Commit

Permalink
Release v1.12.5
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Oct 4, 2017
1 parent 55f9162 commit b489cce
Show file tree
Hide file tree
Showing 12 changed files with 1,580 additions and 166 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.12.5 (2017-10-04)
===

### Service Client Updates
* `service/kinesisanalytics`: Updates service API and documentation
* Kinesis Analytics now supports schema discovery on objects in S3. Additionally, Kinesis Analytics now supports input data preprocessing through Lambda.
* `service/route53domains`: Updates service API and documentation
* Added a new API that checks whether a domain name can be transferred to Amazon Route 53.

### SDK Bugs
* `service/s3/s3crypto`: Correct PutObjectRequest documentation ([#1568](https://github.com/aws/aws-sdk-go/pull/1568))
* s3Crypto's PutObjectRequest docstring example was using an incorrect value. Corrected the type used in the example.
Release v1.12.4 (2017-10-03)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
### SDK Enhancements

### SDK Bugs
* `service/s3/s3crypto`: Correct PutObjectRequest documentation ([#1568](https://github.com/aws/aws-sdk-go/pull/1568))
* s3Crypto's PutObjectRequest docstring example was using an incorrect value. Corrected the type used in the example.
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.12.4"
const SDKVersion = "1.12.5"
168 changes: 156 additions & 12 deletions models/apis/kinesisanalytics/2015-08-14/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@
{"shape":"CodeValidationException"}
]
},
"AddApplicationInputProcessingConfiguration":{
"name":"AddApplicationInputProcessingConfiguration",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"AddApplicationInputProcessingConfigurationRequest"},
"output":{"shape":"AddApplicationInputProcessingConfigurationResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceInUseException"},
{"shape":"InvalidArgumentException"},
{"shape":"ConcurrentModificationException"}
]
},
"AddApplicationOutput":{
"name":"AddApplicationOutput",
"http":{
Expand Down Expand Up @@ -118,6 +133,21 @@
{"shape":"ConcurrentModificationException"}
]
},
"DeleteApplicationInputProcessingConfiguration":{
"name":"DeleteApplicationInputProcessingConfiguration",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteApplicationInputProcessingConfigurationRequest"},
"output":{"shape":"DeleteApplicationInputProcessingConfigurationResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ResourceInUseException"},
{"shape":"InvalidArgumentException"},
{"shape":"ConcurrentModificationException"}
]
},
"DeleteApplicationOutput":{
"name":"DeleteApplicationOutput",
"http":{
Expand Down Expand Up @@ -248,6 +278,26 @@
"members":{
}
},
"AddApplicationInputProcessingConfigurationRequest":{
"type":"structure",
"required":[
"ApplicationName",
"CurrentApplicationVersionId",
"InputId",
"InputProcessingConfiguration"
],
"members":{
"ApplicationName":{"shape":"ApplicationName"},
"CurrentApplicationVersionId":{"shape":"ApplicationVersionId"},
"InputId":{"shape":"Id"},
"InputProcessingConfiguration":{"shape":"InputProcessingConfiguration"}
}
},
"AddApplicationInputProcessingConfigurationResponse":{
"type":"structure",
"members":{
}
},
"AddApplicationInputRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -497,6 +547,24 @@
"members":{
}
},
"DeleteApplicationInputProcessingConfigurationRequest":{
"type":"structure",
"required":[
"ApplicationName",
"CurrentApplicationVersionId",
"InputId"
],
"members":{
"ApplicationName":{"shape":"ApplicationName"},
"CurrentApplicationVersionId":{"shape":"ApplicationVersionId"},
"InputId":{"shape":"Id"}
}
},
"DeleteApplicationInputProcessingConfigurationResponse":{
"type":"structure",
"members":{
}
},
"DeleteApplicationOutputRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -571,27 +639,29 @@
},
"DiscoverInputSchemaRequest":{
"type":"structure",
"required":[
"ResourceARN",
"RoleARN",
"InputStartingPositionConfiguration"
],
"members":{
"ResourceARN":{"shape":"ResourceARN"},
"RoleARN":{"shape":"RoleARN"},
"InputStartingPositionConfiguration":{"shape":"InputStartingPositionConfiguration"}
"InputStartingPositionConfiguration":{"shape":"InputStartingPositionConfiguration"},
"S3Configuration":{"shape":"S3Configuration"},
"InputProcessingConfiguration":{"shape":"InputProcessingConfiguration"}
}
},
"DiscoverInputSchemaResponse":{
"type":"structure",
"members":{
"InputSchema":{"shape":"SourceSchema"},
"ParsedInputRecords":{"shape":"ParsedInputRecords"},
"ProcessedInputRecords":{"shape":"ProcessedInputRecords"},
"RawInputRecords":{"shape":"RawInputRecords"}
}
},
"ErrorMessage":{"type":"string"},
"FileKey":{"type":"string"},
"FileKey":{
"type":"string",
"max":1024,
"min":1
},
"Id":{
"type":"string",
"max":50,
Expand Down Expand Up @@ -622,6 +692,7 @@
],
"members":{
"NamePrefix":{"shape":"InAppStreamName"},
"InputProcessingConfiguration":{"shape":"InputProcessingConfiguration"},
"KinesisStreamsInput":{"shape":"KinesisStreamsInput"},
"KinesisFirehoseInput":{"shape":"KinesisFirehoseInput"},
"InputParallelism":{"shape":"InputParallelism"},
Expand Down Expand Up @@ -649,6 +720,7 @@
"InputId":{"shape":"Id"},
"NamePrefix":{"shape":"InAppStreamName"},
"InAppStreamNames":{"shape":"InAppStreamNames"},
"InputProcessingConfigurationDescription":{"shape":"InputProcessingConfigurationDescription"},
"KinesisStreamsInputDescription":{"shape":"KinesisStreamsInputDescription"},
"KinesisFirehoseInputDescription":{"shape":"KinesisFirehoseInputDescription"},
"InputSchema":{"shape":"SourceSchema"},
Expand All @@ -660,6 +732,31 @@
"type":"list",
"member":{"shape":"InputDescription"}
},
"InputLambdaProcessor":{
"type":"structure",
"required":[
"ResourceARN",
"RoleARN"
],
"members":{
"ResourceARN":{"shape":"ResourceARN"},
"RoleARN":{"shape":"RoleARN"}
}
},
"InputLambdaProcessorDescription":{
"type":"structure",
"members":{
"ResourceARN":{"shape":"ResourceARN"},
"RoleARN":{"shape":"RoleARN"}
}
},
"InputLambdaProcessorUpdate":{
"type":"structure",
"members":{
"ResourceARNUpdate":{"shape":"ResourceARN"},
"RoleARNUpdate":{"shape":"RoleARN"}
}
},
"InputParallelism":{
"type":"structure",
"members":{
Expand All @@ -677,6 +774,26 @@
"CountUpdate":{"shape":"InputParallelismCount"}
}
},
"InputProcessingConfiguration":{
"type":"structure",
"required":["InputLambdaProcessor"],
"members":{
"InputLambdaProcessor":{"shape":"InputLambdaProcessor"}
}
},
"InputProcessingConfigurationDescription":{
"type":"structure",
"members":{
"InputLambdaProcessorDescription":{"shape":"InputLambdaProcessorDescription"}
}
},
"InputProcessingConfigurationUpdate":{
"type":"structure",
"required":["InputLambdaProcessorUpdate"],
"members":{
"InputLambdaProcessorUpdate":{"shape":"InputLambdaProcessorUpdate"}
}
},
"InputSchemaUpdate":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -705,6 +822,7 @@
"members":{
"InputId":{"shape":"Id"},
"NamePrefixUpdate":{"shape":"InAppStreamName"},
"InputProcessingConfigurationUpdate":{"shape":"InputProcessingConfigurationUpdate"},
"KinesisStreamsInputUpdate":{"shape":"KinesisStreamsInputUpdate"},
"KinesisFirehoseInputUpdate":{"shape":"KinesisFirehoseInputUpdate"},
"InputSchemaUpdate":{"shape":"InputSchemaUpdate"},
Expand Down Expand Up @@ -938,6 +1056,11 @@
"type":"list",
"member":{"shape":"ParsedInputRecord"}
},
"ProcessedInputRecord":{"type":"string"},
"ProcessedInputRecords":{
"type":"list",
"member":{"shape":"ProcessedInputRecord"}
},
"RawInputRecord":{"type":"string"},
"RawInputRecords":{
"type":"list",
Expand All @@ -964,7 +1087,10 @@
"type":"string",
"pattern":"[a-zA-Z_][a-zA-Z0-9_]*"
},
"RecordColumnSqlType":{"type":"string"},
"RecordColumnSqlType":{
"type":"string",
"min":1
},
"RecordColumns":{
"type":"list",
"member":{"shape":"RecordColumn"},
Expand Down Expand Up @@ -994,7 +1120,10 @@
"type":"string",
"min":1
},
"RecordRowPath":{"type":"string"},
"RecordRowPath":{
"type":"string",
"min":1
},
"ReferenceDataSource":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1043,7 +1172,7 @@
"type":"string",
"max":2048,
"min":1,
"pattern":"arn:[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]+:[a-zA-Z0-9\\-]*:\\d{12}:[a-zA-Z_0-9+=,.@\\-_/:]+"
"pattern":"arn:.*"
},
"ResourceInUseException":{
"type":"structure",
Expand Down Expand Up @@ -1072,6 +1201,19 @@
"min":1,
"pattern":"arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+"
},
"S3Configuration":{
"type":"structure",
"required":[
"RoleARN",
"BucketARN",
"FileKey"
],
"members":{
"RoleARN":{"shape":"RoleARN"},
"BucketARN":{"shape":"BucketARN"},
"FileKey":{"shape":"FileKey"}
}
},
"S3ReferenceDataSource":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1111,7 +1253,8 @@
"members":{
"message":{"shape":"ErrorMessage"}
},
"exception":true
"exception":true,
"fault":true
},
"SourceSchema":{
"type":"structure",
Expand Down Expand Up @@ -1158,7 +1301,8 @@
"type":"structure",
"members":{
"message":{"shape":"ErrorMessage"},
"RawInputRecords":{"shape":"RawInputRecords"}
"RawInputRecords":{"shape":"RawInputRecords"},
"ProcessedInputRecords":{"shape":"ProcessedInputRecords"}
},
"exception":true
},
Expand Down

0 comments on commit b489cce

Please sign in to comment.