File tree Expand file tree Collapse file tree 2 files changed +16
-4
lines changed
clients/client-ec2/src/models
codegen/sdk-codegen/aws-models Expand file tree Collapse file tree 2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -1991,7 +1991,12 @@ export namespace DestinationOptionsRequest {
1991
1991
1992
1992
export type LogDestinationType = "cloud-watch-logs" | "s3" ;
1993
1993
1994
- export type FlowLogsResourceType = "NetworkInterface" | "Subnet" | "VPC" ;
1994
+ export type FlowLogsResourceType =
1995
+ | "NetworkInterface"
1996
+ | "Subnet"
1997
+ | "TransitGateway"
1998
+ | "TransitGatewayAttachment"
1999
+ | "VPC" ;
1995
2000
1996
2001
export type TrafficType = "ACCEPT" | "ALL" | "REJECT" ;
1997
2002
@@ -2040,7 +2045,7 @@ export interface CreateFlowLogsRequest {
2040
2045
/**
2041
2046
* <p>The type of traffic to log. You can log traffic that the resource accepts or rejects, or all traffic.</p>
2042
2047
*/
2043
- TrafficType : TrafficType | string | undefined ;
2048
+ TrafficType ? : TrafficType | string ;
2044
2049
2045
2050
/**
2046
2051
* <p>The type of destination to which the flow log data is to be published. Flow log data can be
Original file line number Diff line number Diff line change 11165
11165
"TrafficType": {
11166
11166
"target": "com.amazonaws.ec2#TrafficType",
11167
11167
"traits": {
11168
- "smithy.api#documentation": "<p>The type of traffic to log. You can log traffic that the resource accepts or rejects, or all traffic.</p>",
11169
- "smithy.api#required": {}
11168
+ "smithy.api#documentation": "<p>The type of traffic to log. You can log traffic that the resource accepts or rejects, or all traffic.</p>"
11170
11169
}
11171
11170
},
11172
11171
"LogDestinationType": {
37266
37265
{
37267
37266
"value": "NetworkInterface",
37268
37267
"name": "NetworkInterface"
37268
+ },
37269
+ {
37270
+ "value": "TransitGateway",
37271
+ "name": "TransitGateway"
37272
+ },
37273
+ {
37274
+ "value": "TransitGatewayAttachment",
37275
+ "name": "TransitGatewayAttachment"
37269
37276
}
37270
37277
]
37271
37278
}
You can’t perform that action at this time.
0 commit comments