Skip to content

Commit

Permalink
Release v1.53.1 (2024-05-13) (#5259)
Browse files Browse the repository at this point in the history
Release v1.53.1 (2024-05-13)
===

### Service Client Updates
* `service/eventbridge`: Updates service API and documentation
* `service/vpc-lattice`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation authored May 13, 2024
1 parent e791517 commit 08dfa57
Show file tree
Hide file tree
Showing 12 changed files with 926 additions and 275 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.53.1 (2024-05-13)
===

### Service Client Updates
* `service/eventbridge`: Updates service API and documentation
* `service/vpc-lattice`: Updates service API and documentation

Release v1.53.0 (2024-05-10)
===

Expand Down
3 changes: 3 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
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.53.0"
const SDKVersion = "1.53.1"
63 changes: 60 additions & 3 deletions models/apis/eventbridge/2015-10-07/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"endpointPrefix":"events",
"jsonVersion":"1.1",
"protocol":"json",
"protocols":["json"],
"serviceFullName":"Amazon EventBridge",
"serviceId":"EventBridge",
"signatureVersion":"v4",
Expand Down Expand Up @@ -793,6 +794,21 @@
{"shape":"ConcurrentModificationException"},
{"shape":"InternalException"}
]
},
"UpdateEventBus":{
"name":"UpdateEventBus",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UpdateEventBusRequest"},
"output":{"shape":"UpdateEventBusResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InternalException"},
{"shape":"ConcurrentModificationException"},
{"shape":"OperationDisabledException"}
]
}
},
"shapes":{
Expand Down Expand Up @@ -1367,13 +1383,19 @@
"members":{
"Name":{"shape":"EventBusName"},
"EventSourceName":{"shape":"EventSourceName"},
"Description":{"shape":"EventBusDescription"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
"Tags":{"shape":"TagList"}
}
},
"CreateEventBusResponse":{
"type":"structure",
"members":{
"EventBusArn":{"shape":"String"}
"EventBusArn":{"shape":"String"},
"Description":{"shape":"EventBusDescription"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
}
},
"CreatePartnerEventSourceRequest":{
Expand Down Expand Up @@ -1623,7 +1645,12 @@
"members":{
"Name":{"shape":"String"},
"Arn":{"shape":"String"},
"Policy":{"shape":"String"}
"Description":{"shape":"EventBusDescription"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"},
"Policy":{"shape":"String"},
"CreationTime":{"shape":"Timestamp"},
"LastModifiedTime":{"shape":"Timestamp"}
}
},
"DescribeEventSourceRequest":{
Expand Down Expand Up @@ -1830,9 +1857,16 @@
"members":{
"Name":{"shape":"String"},
"Arn":{"shape":"String"},
"Policy":{"shape":"String"}
"Description":{"shape":"EventBusDescription"},
"Policy":{"shape":"String"},
"CreationTime":{"shape":"Timestamp"},
"LastModifiedTime":{"shape":"Timestamp"}
}
},
"EventBusDescription":{
"type":"string",
"max":512
},
"EventBusList":{
"type":"list",
"member":{"shape":"EventBus"}
Expand Down Expand Up @@ -2018,6 +2052,10 @@
"PartitionKeyPath":{"shape":"TargetPartitionKeyPath"}
}
},
"KmsKeyIdentifier":{
"type":"string",
"max":2048
},
"LaunchType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -3257,6 +3295,25 @@
"EndpointUrl":{"shape":"EndpointUrl"},
"State":{"shape":"EndpointState"}
}
},
"UpdateEventBusRequest":{
"type":"structure",
"members":{
"Name":{"shape":"EventBusName"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"Description":{"shape":"EventBusDescription"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
}
},
"UpdateEventBusResponse":{
"type":"structure",
"members":{
"Arn":{"shape":"String"},
"Name":{"shape":"EventBusName"},
"KmsKeyIdentifier":{"shape":"KmsKeyIdentifier"},
"Description":{"shape":"EventBusDescription"},
"DeadLetterConfig":{"shape":"DeadLetterConfig"}
}
}
}
}
80 changes: 62 additions & 18 deletions models/apis/eventbridge/2015-10-07/docs-2.json

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions models/apis/vpc-lattice/2022-11-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2360,7 +2360,8 @@
"type":"string",
"enum":[
"HTTP",
"HTTPS"
"HTTPS",
"TLS_PASSTHROUGH"
]
},
"ListenerSummary":{
Expand Down Expand Up @@ -2985,7 +2986,8 @@
"type":"string",
"enum":[
"HTTP",
"HTTPS"
"HTTPS",
"TCP"
]
},
"TargetGroupProtocolVersion":{
Expand Down Expand Up @@ -3395,7 +3397,7 @@
"WeightedTargetGroupList":{
"type":"list",
"member":{"shape":"WeightedTargetGroup"},
"max":2,
"max":10,
"min":1
}
}
Expand Down
Loading

0 comments on commit 08dfa57

Please sign in to comment.