Skip to content

Commit

Permalink
Release v1.44.95 (2022-09-09) (#4553)
Browse files Browse the repository at this point in the history
Release v1.44.95 (2022-09-09)
===

### Service Client Updates
* `service/cloudtrail`: Updates service API, documentation, and paginators
  * This release adds CloudTrail getChannel and listChannels APIs to allow customer to view the ServiceLinkedChannel configurations.
* `service/models.lex.v2`: Updates service API and documentation
* `service/pi`: Updates service API
* `service/redshift`: Updates service documentation
  * This release updates documentation for AQUA features and other description updates.
* `service/runtime.lex.v2`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Sep 9, 2022
1 parent 2f6c8c4 commit 9e7ca5a
Show file tree
Hide file tree
Showing 20 changed files with 1,993 additions and 167 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,15 @@
Release v1.44.95 (2022-09-09)
===

### Service Client Updates
* `service/cloudtrail`: Updates service API, documentation, and paginators
* This release adds CloudTrail getChannel and listChannels APIs to allow customer to view the ServiceLinkedChannel configurations.
* `service/models.lex.v2`: Updates service API and documentation
* `service/pi`: Updates service API
* `service/redshift`: Updates service documentation
* This release updates documentation for AQUA features and other description updates.
* `service/runtime.lex.v2`: Updates service API and documentation

Release v1.44.94 (2022-09-08)
===

Expand Down
21 changes: 21 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.94"
const SDKVersion = "1.44.95"
145 changes: 145 additions & 0 deletions models/apis/cloudtrail/2013-11-01/api-2.json
Expand Up @@ -195,6 +195,22 @@
],
"idempotent":true
},
"GetChannel":{
"name":"GetChannel",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetChannelRequest"},
"output":{"shape":"GetChannelResponse"},
"errors":[
{"shape":"ChannelARNInvalidException"},
{"shape":"ChannelNotFoundException"},
{"shape":"OperationNotPermittedException"},
{"shape":"UnsupportedOperationException"}
],
"idempotent":true
},
"GetEventDataStore":{
"name":"GetEventDataStore",
"http":{
Expand Down Expand Up @@ -297,6 +313,21 @@
],
"idempotent":true
},
"ListChannels":{
"name":"ListChannels",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListChannelsRequest"},
"output":{"shape":"ListChannelsResponse"},
"errors":[
{"shape":"InvalidNextTokenException"},
{"shape":"OperationNotPermittedException"},
{"shape":"UnsupportedOperationException"}
],
"idempotent":true
},
"ListEventDataStores":{
"name":"ListEventDataStores",
"http":{
Expand Down Expand Up @@ -686,6 +717,41 @@
"QueryStatus":{"shape":"QueryStatus"}
}
},
"Channel":{
"type":"structure",
"members":{
"ChannelArn":{"shape":"ChannelArn"},
"Name":{"shape":"ChannelName"}
}
},
"ChannelARNInvalidException":{
"type":"structure",
"members":{
},
"exception":true
},
"ChannelArn":{
"type":"string",
"max":256,
"min":3,
"pattern":"^[a-zA-Z0-9._/\\-:]+$"
},
"ChannelName":{
"type":"string",
"max":128,
"min":3,
"pattern":"^[a-zA-Z0-9._\\-]+$"
},
"ChannelNotFoundException":{
"type":"structure",
"members":{
},
"exception":true
},
"Channels":{
"type":"list",
"member":{"shape":"Channel"}
},
"CloudTrailARNInvalidException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -861,6 +927,30 @@
"trailList":{"shape":"TrailList"}
}
},
"Destination":{
"type":"structure",
"required":[
"Type",
"Location"
],
"members":{
"Type":{"shape":"DestinationType"},
"Location":{"shape":"Location"}
}
},
"DestinationType":{
"type":"string",
"enum":[
"EVENT_DATA_STORE",
"AWS_SERVICE"
]
},
"Destinations":{
"type":"list",
"member":{"shape":"Destination"},
"max":200,
"min":1
},
"ErrorMessage":{
"type":"string",
"max":1000,
Expand Down Expand Up @@ -1007,6 +1097,23 @@
"type":"list",
"member":{"shape":"String"}
},
"GetChannelRequest":{
"type":"structure",
"required":["Channel"],
"members":{
"Channel":{"shape":"ChannelArn"}
}
},
"GetChannelResponse":{
"type":"structure",
"members":{
"ChannelArn":{"shape":"ChannelArn"},
"Name":{"shape":"ChannelName"},
"Source":{"shape":"Source"},
"SourceConfig":{"shape":"SourceConfig"},
"Destinations":{"shape":"Destinations"}
}
},
"GetEventDataStoreRequest":{
"type":"structure",
"required":["EventDataStore"],
Expand Down Expand Up @@ -1340,6 +1447,25 @@
},
"exception":true
},
"ListChannelsMaxResultsCount":{
"type":"integer",
"max":1000,
"min":1
},
"ListChannelsRequest":{
"type":"structure",
"members":{
"MaxResults":{"shape":"ListChannelsMaxResultsCount"},
"NextToken":{"shape":"PaginationToken"}
}
},
"ListChannelsResponse":{
"type":"structure",
"members":{
"Channels":{"shape":"Channels"},
"NextToken":{"shape":"PaginationToken"}
}
},
"ListEventDataStoresMaxResultsCount":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -1426,6 +1552,12 @@
"NextToken":{"shape":"String"}
}
},
"Location":{
"type":"string",
"max":1024,
"min":3,
"pattern":"^[a-zA-Z0-9._/\\-:]+$"
},
"Long":{"type":"long"},
"LookupAttribute":{
"type":"structure",
Expand Down Expand Up @@ -1760,6 +1892,19 @@
"min":0,
"pattern":".*"
},
"Source":{
"type":"string",
"max":256,
"min":1,
"pattern":".*"
},
"SourceConfig":{
"type":"structure",
"members":{
"ApplyToAllRegions":{"shape":"Boolean"},
"AdvancedEventSelectors":{"shape":"AdvancedEventSelectors"}
}
},
"StartLoggingRequest":{
"type":"structure",
"required":["Name"],
Expand Down

0 comments on commit 9e7ca5a

Please sign in to comment.