Skip to content

Commit

Permalink
Release v1.48.3 (2023-11-22) (#5081)
Browse files Browse the repository at this point in the history
Release v1.48.3 (2023-11-22)
===

### Service Client Updates
* `service/kinesis`: Updates service API and documentation
  * This release adds support for resource based policies on streams and consumers.
* `service/s3control`: Updates service API and documentation
  * Amazon S3 Batch Operations now manages buckets or prefixes in a single step.
* `service/sagemaker`: Updates service API and documentation
  * This feature adds the end user license agreement status as a model access configuration parameter.
  • Loading branch information
aws-sdk-go-automation committed Nov 22, 2023
1 parent d93723b commit ce6eaed
Show file tree
Hide file tree
Showing 14 changed files with 3,530 additions and 1,377 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Release v1.48.3 (2023-11-22)
===

### Service Client Updates
* `service/kinesis`: Updates service API and documentation
* This release adds support for resource based policies on streams and consumers.
* `service/s3control`: Updates service API and documentation
* Amazon S3 Batch Operations now manages buckets or prefixes in a single step.
* `service/sagemaker`: Updates service API and documentation
* This feature adds the end user license agreement status as a model access configuration parameter.

Release v1.48.2 (2023-11-21)
===

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.48.2"
const SDKVersion = "1.48.3"
102 changes: 102 additions & 0 deletions models/apis/kinesis/2013-12-02/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,24 @@
"OperationType":{"value":"control"}
}
},
"DeleteResourcePolicy":{
"name":"DeleteResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteResourcePolicyInput"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"},
{"shape":"InvalidArgumentException"},
{"shape":"ResourceInUseException"}
],
"staticContextParams":{
"OperationType":{"value":"control"}
}
},
"DeleteStream":{
"name":"DeleteStream",
"http":{
Expand Down Expand Up @@ -225,6 +243,24 @@
"OperationType":{"value":"data"}
}
},
"GetResourcePolicy":{
"name":"GetResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetResourcePolicyInput"},
"output":{"shape":"GetResourcePolicyOutput"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"},
{"shape":"InvalidArgumentException"}
],
"staticContextParams":{
"OperationType":{"value":"control"}
}
},
"GetShardIterator":{
"name":"GetShardIterator",
"http":{
Expand Down Expand Up @@ -399,6 +435,24 @@
"OperationType":{"value":"data"}
}
},
"PutResourcePolicy":{
"name":"PutResourcePolicy",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"PutResourcePolicyInput"},
"errors":[
{"shape":"AccessDeniedException"},
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"},
{"shape":"InvalidArgumentException"},
{"shape":"ResourceInUseException"}
],
"staticContextParams":{
"OperationType":{"value":"control"}
}
},
"RegisterStreamConsumer":{
"name":"RegisterStreamConsumer",
"http":{
Expand Down Expand Up @@ -678,6 +732,16 @@
}
}
},
"DeleteResourcePolicyInput":{
"type":"structure",
"required":["ResourceARN"],
"members":{
"ResourceARN":{
"shape":"ResourceARN",
"contextParam":{"name":"ResourceARN"}
}
}
},
"DeleteStreamInput":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -878,6 +942,23 @@
"ChildShards":{"shape":"ChildShardList"}
}
},
"GetResourcePolicyInput":{
"type":"structure",
"required":["ResourceARN"],
"members":{
"ResourceARN":{
"shape":"ResourceARN",
"contextParam":{"name":"ResourceARN"}
}
}
},
"GetResourcePolicyOutput":{
"type":"structure",
"required":["Policy"],
"members":{
"Policy":{"shape":"Policy"}
}
},
"GetShardIteratorInput":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1163,6 +1244,7 @@
"max":256,
"min":1
},
"Policy":{"type":"string"},
"PositiveIntegerObject":{
"type":"integer",
"min":1
Expand Down Expand Up @@ -1258,6 +1340,20 @@
"max":500,
"min":1
},
"PutResourcePolicyInput":{
"type":"structure",
"required":[
"ResourceARN",
"Policy"
],
"members":{
"ResourceARN":{
"shape":"ResourceARN",
"contextParam":{"name":"ResourceARN"}
},
"Policy":{"shape":"Policy"}
}
},
"Record":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1310,6 +1406,12 @@
}
}
},
"ResourceARN":{
"type":"string",
"max":2048,
"min":1,
"pattern":"arn:aws.*:kinesis:.*:\\d{12}:.*stream/\\S+"
},
"ResourceInUseException":{
"type":"structure",
"members":{
Expand Down
80 changes: 59 additions & 21 deletions models/apis/kinesis/2013-12-02/docs-2.json

Large diffs are not rendered by default.

0 comments on commit ce6eaed

Please sign in to comment.