|
270 | 270 | NeuronDeviceName = str |
271 | 271 | NextToken = str |
272 | 272 | NitroTpmSupportedVersionType = str |
| 273 | +OdbNetworkArn = str |
273 | 274 | OfferingId = str |
274 | 275 | OutpostArn = str |
275 | 276 | OutpostLagId = str |
@@ -5692,8 +5693,10 @@ class EbsBlockDevice(TypedDict, total=False): |
5692 | 5693 | KmsKeyId: Optional[String] |
5693 | 5694 | Throughput: Optional[Integer] |
5694 | 5695 | OutpostArn: Optional[String] |
| 5696 | + AvailabilityZone: Optional[String] |
5695 | 5697 | Encrypted: Optional[Boolean] |
5696 | 5698 | VolumeInitializationRate: Optional[Integer] |
| 5699 | + AvailabilityZoneId: Optional[String] |
5697 | 5700 |
|
5698 | 5701 |
|
5699 | 5702 | class BlockDeviceMapping(TypedDict, total=False): |
@@ -7341,6 +7344,7 @@ class CreateFpgaImageResult(TypedDict, total=False): |
7341 | 7344 |
|
7342 | 7345 | class CreateImageRequest(ServiceRequest): |
7343 | 7346 | TagSpecifications: Optional[TagSpecificationList] |
| 7347 | + SnapshotLocation: Optional[SnapshotLocationEnum] |
7344 | 7348 | DryRun: Optional[Boolean] |
7345 | 7349 | InstanceId: InstanceId |
7346 | 7350 | Name: String |
@@ -8886,6 +8890,7 @@ class CreateRouteRequest(ServiceRequest): |
8886 | 8890 | LocalGatewayId: Optional[LocalGatewayId] |
8887 | 8891 | CarrierGatewayId: Optional[CarrierGatewayId] |
8888 | 8892 | CoreNetworkArn: Optional[CoreNetworkArn] |
| 8893 | + OdbNetworkArn: Optional[OdbNetworkArn] |
8889 | 8894 | DryRun: Optional[Boolean] |
8890 | 8895 | RouteTableId: RouteTableId |
8891 | 8896 | DestinationCidrBlock: Optional[String] |
@@ -9022,6 +9027,7 @@ class Route(TypedDict, total=False): |
9022 | 9027 | State: Optional[RouteState] |
9023 | 9028 | VpcPeeringConnectionId: Optional[String] |
9024 | 9029 | CoreNetworkArn: Optional[CoreNetworkArn] |
| 9030 | + OdbNetworkArn: Optional[OdbNetworkArn] |
9025 | 9031 |
|
9026 | 9032 |
|
9027 | 9033 | RouteList = List[Route] |
@@ -19955,6 +19961,7 @@ class ReplaceRouteRequest(ServiceRequest): |
19955 | 19961 | LocalGatewayId: Optional[LocalGatewayId] |
19956 | 19962 | CarrierGatewayId: Optional[CarrierGatewayId] |
19957 | 19963 | CoreNetworkArn: Optional[CoreNetworkArn] |
| 19964 | + OdbNetworkArn: Optional[OdbNetworkArn] |
19958 | 19965 | DryRun: Optional[Boolean] |
19959 | 19966 | RouteTableId: RouteTableId |
19960 | 19967 | DestinationCidrBlock: Optional[String] |
@@ -21608,6 +21615,7 @@ def create_image( |
21608 | 21615 | instance_id: InstanceId, |
21609 | 21616 | name: String, |
21610 | 21617 | tag_specifications: TagSpecificationList | None = None, |
| 21618 | + snapshot_location: SnapshotLocationEnum | None = None, |
21611 | 21619 | dry_run: Boolean | None = None, |
21612 | 21620 | description: String | None = None, |
21613 | 21621 | no_reboot: Boolean | None = None, |
@@ -22097,6 +22105,7 @@ def create_route( |
22097 | 22105 | local_gateway_id: LocalGatewayId | None = None, |
22098 | 22106 | carrier_gateway_id: CarrierGatewayId | None = None, |
22099 | 22107 | core_network_arn: CoreNetworkArn | None = None, |
| 22108 | + odb_network_arn: OdbNetworkArn | None = None, |
22100 | 22109 | dry_run: Boolean | None = None, |
22101 | 22110 | destination_cidr_block: String | None = None, |
22102 | 22111 | gateway_id: RouteGatewayId | None = None, |
@@ -28503,6 +28512,7 @@ def replace_route( |
28503 | 28512 | local_gateway_id: LocalGatewayId | None = None, |
28504 | 28513 | carrier_gateway_id: CarrierGatewayId | None = None, |
28505 | 28514 | core_network_arn: CoreNetworkArn | None = None, |
| 28515 | + odb_network_arn: OdbNetworkArn | None = None, |
28506 | 28516 | dry_run: Boolean | None = None, |
28507 | 28517 | destination_cidr_block: String | None = None, |
28508 | 28518 | gateway_id: RouteGatewayId | None = None, |
|
0 commit comments