aws-sdk-ec2 1.268.0 → 1.272.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d03aefe69d549116bebf06a2115569068b2c9f5f1e159bad9c5f9d9af6c1a05a
4
- data.tar.gz: 82f619078a0f33f39bed0de6221a49834b30314c0fde367aa86b050f6c694f49
3
+ metadata.gz: 12a0b2cda771675a840b0e66f8e2a69c58c0a9aa6355ad599d8c8f2ea8b7a06b
4
+ data.tar.gz: 6f106c2dc1af2352ed7ac30d8a8cccb8d8aec6be3355ded452050c107d2f17d8
5
5
  SHA512:
6
- metadata.gz: 8827261dbe1191239223f1714d5d3230766daa2fd087b985904f708707ed4aa47cf17d0f20bad4b18223b75f7d4f5b8d02699d78c9ebfda5b9b3d1f771819d4a
7
- data.tar.gz: ed3072a89fa825f93d42ab109be424533356a0208ffb0a6b87ae9faae7346d8a3a18be33edf495bac51e0f44caa03969f74dfe278a81fc26ef3e81e5d190fc35
6
+ metadata.gz: fefddb44b0518eae62445067ce993da98b1f71d74c98c5aace6f5026107f07a768e444652f8068c08825645c19fb2cb2a8fa769289ec2a601d43a0cb6ad5af3f
7
+ data.tar.gz: 27aa144ce233d714ec5fda01bf174005c961e7a4dd630731a4b95828d082b4dade8121d8fd0ef6049a2ec3b6fc350f76041c39e97cc3fdda660ecebf040de690
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.272.0 (2021-10-25)
5
+ ------------------
6
+
7
+ * Feature - This release adds support to create a VPN Connection that is not attached to a Gateway at the time of creation. Use this to create VPNs associated with Core Networks, or modify your VPN and attach a gateway using the modify API after creation.
8
+
9
+ 1.271.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.270.0 (2021-10-13)
15
+ ------------------
16
+
17
+ * Feature - This release adds support for additional VPC Flow Logs delivery options to S3, such as Apache Parquet formatted files, Hourly partitions and Hive-compatible S3 prefixes
18
+
19
+ 1.269.0 (2021-10-12)
20
+ ------------------
21
+
22
+ * Feature - EncryptionSupport for InstanceStorageInfo added to DescribeInstanceTypes API
23
+
4
24
  1.268.0 (2021-10-11)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.268.0
1
+ 1.272.0
@@ -5589,11 +5589,10 @@ module Aws::EC2
5589
5589
  # accepts or rejects, or all traffic.
5590
5590
  #
5591
5591
  # @option params [String] :log_destination_type
5592
- # Specifies the type of destination to which the flow log data is to be
5593
- # published. Flow log data can be published to CloudWatch Logs or Amazon
5594
- # S3. To publish flow log data to CloudWatch Logs, specify
5595
- # `cloud-watch-logs`. To publish flow log data to Amazon S3, specify
5596
- # `s3`.
5592
+ # The type of destination to which the flow log data is to be published.
5593
+ # Flow log data can be published to CloudWatch Logs or Amazon S3. To
5594
+ # publish flow log data to CloudWatch Logs, specify `cloud-watch-logs`.
5595
+ # To publish flow log data to Amazon S3, specify `s3`.
5597
5596
  #
5598
5597
  # If you specify `LogDestinationType` as `s3`, do not specify
5599
5598
  # `DeliverLogsPermissionArn` or `LogGroupName`.
@@ -5601,10 +5600,10 @@ module Aws::EC2
5601
5600
  # Default: `cloud-watch-logs`
5602
5601
  #
5603
5602
  # @option params [String] :log_destination
5604
- # Specifies the destination to which the flow log data is to be
5605
- # published. Flow log data can be published to a CloudWatch Logs log
5606
- # group or an Amazon S3 bucket. The value specified for this parameter
5607
- # depends on the value specified for `LogDestinationType`.
5603
+ # The destination to which the flow log data is to be published. Flow
5604
+ # log data can be published to a CloudWatch Logs log group or an Amazon
5605
+ # S3 bucket. The value specified for this parameter depends on the value
5606
+ # specified for `LogDestinationType`.
5608
5607
  #
5609
5608
  # If `LogDestinationType` is not specified or `cloud-watch-logs`,
5610
5609
  # specify the Amazon Resource Name (ARN) of the CloudWatch Logs log
@@ -5653,6 +5652,9 @@ module Aws::EC2
5653
5652
  #
5654
5653
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
5655
5654
  #
5655
+ # @option params [Types::DestinationOptionsRequest] :destination_options
5656
+ # The destination options.
5657
+ #
5656
5658
  # @return [Types::CreateFlowLogsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5657
5659
  #
5658
5660
  # * {Types::CreateFlowLogsResult#client_token #client_token} => String
@@ -5684,6 +5686,11 @@ module Aws::EC2
5684
5686
  # },
5685
5687
  # ],
5686
5688
  # max_aggregation_interval: 1,
5689
+ # destination_options: {
5690
+ # file_format: "plain-text", # accepts plain-text, parquet
5691
+ # hive_compatible_partitions: false,
5692
+ # per_hour_partition: false,
5693
+ # },
5687
5694
  # })
5688
5695
  #
5689
5696
  # @example Response structure
@@ -11800,6 +11807,9 @@ module Aws::EC2
11800
11807
  # resp.vpn_connection.vpn_connection_id #=> String
11801
11808
  # resp.vpn_connection.vpn_gateway_id #=> String
11802
11809
  # resp.vpn_connection.transit_gateway_id #=> String
11810
+ # resp.vpn_connection.core_network_arn #=> String
11811
+ # resp.vpn_connection.core_network_attachment_arn #=> String
11812
+ # resp.vpn_connection.gateway_association_state #=> String
11803
11813
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
11804
11814
  # resp.vpn_connection.options.static_routes_only #=> Boolean
11805
11815
  # resp.vpn_connection.options.local_ipv_4_network_cidr #=> String
@@ -17567,6 +17577,9 @@ module Aws::EC2
17567
17577
  # resp.flow_logs[0].tags[0].key #=> String
17568
17578
  # resp.flow_logs[0].tags[0].value #=> String
17569
17579
  # resp.flow_logs[0].max_aggregation_interval #=> Integer
17580
+ # resp.flow_logs[0].destination_options.file_format #=> String, one of "plain-text", "parquet"
17581
+ # resp.flow_logs[0].destination_options.hive_compatible_partitions #=> Boolean
17582
+ # resp.flow_logs[0].destination_options.per_hour_partition #=> Boolean
17570
17583
  # resp.next_token #=> String
17571
17584
  #
17572
17585
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFlowLogs AWS API Documentation
@@ -19574,9 +19587,12 @@ module Aws::EC2
19574
19587
  # * `instance-storage-info.disk.type` - The storage technology for the
19575
19588
  # local instance storage disks (`hdd` \| `ssd`).
19576
19589
  #
19590
+ # * `instance-storage-info.encryption-supported` - Indicates whether
19591
+ # data is encrypted at rest (`required` \| `unsupported`).
19592
+ #
19577
19593
  # * `instance-storage-info.nvme-support` - Indicates whether
19578
19594
  # non-volatile memory express (NVMe) is supported for instance store
19579
- # (`required` \| `supported`) \| `unsupported`).
19595
+ # (`required` \| `supported` \| `unsupported`).
19580
19596
  #
19581
19597
  # * `instance-storage-info.total-size-in-gb` - The total amount of
19582
19598
  # storage available from all local instance storage, in GB.
@@ -19695,7 +19711,7 @@ module Aws::EC2
19695
19711
  # resp.instance_types[0].bare_metal #=> Boolean
19696
19712
  # resp.instance_types[0].hypervisor #=> String, one of "nitro", "xen"
19697
19713
  # resp.instance_types[0].processor_info.supported_architectures #=> Array
19698
- # resp.instance_types[0].processor_info.supported_architectures[0] #=> String, one of "i386", "x86_64", "arm64"
19714
+ # resp.instance_types[0].processor_info.supported_architectures[0] #=> String, one of "i386", "x86_64", "arm64", "x86_64_mac"
19699
19715
  # resp.instance_types[0].processor_info.sustained_clock_speed_in_ghz #=> Float
19700
19716
  # resp.instance_types[0].v_cpu_info.default_v_cpus #=> Integer
19701
19717
  # resp.instance_types[0].v_cpu_info.default_cores #=> Integer
@@ -19712,6 +19728,7 @@ module Aws::EC2
19712
19728
  # resp.instance_types[0].instance_storage_info.disks[0].count #=> Integer
19713
19729
  # resp.instance_types[0].instance_storage_info.disks[0].type #=> String, one of "hdd", "ssd"
19714
19730
  # resp.instance_types[0].instance_storage_info.nvme_support #=> String, one of "unsupported", "supported", "required"
19731
+ # resp.instance_types[0].instance_storage_info.encryption_support #=> String, one of "unsupported", "required"
19715
19732
  # resp.instance_types[0].ebs_info.ebs_optimized_support #=> String, one of "unsupported", "supported", "default"
19716
19733
  # resp.instance_types[0].ebs_info.encryption_support #=> String, one of "unsupported", "supported"
19717
19734
  # resp.instance_types[0].ebs_info.ebs_optimized_info.baseline_bandwidth_in_mbps #=> Integer
@@ -29518,6 +29535,9 @@ module Aws::EC2
29518
29535
  # resp.vpn_connections[0].vpn_connection_id #=> String
29519
29536
  # resp.vpn_connections[0].vpn_gateway_id #=> String
29520
29537
  # resp.vpn_connections[0].transit_gateway_id #=> String
29538
+ # resp.vpn_connections[0].core_network_arn #=> String
29539
+ # resp.vpn_connections[0].core_network_attachment_arn #=> String
29540
+ # resp.vpn_connections[0].gateway_association_state #=> String
29521
29541
  # resp.vpn_connections[0].options.enable_acceleration #=> Boolean
29522
29542
  # resp.vpn_connections[0].options.static_routes_only #=> Boolean
29523
29543
  # resp.vpn_connections[0].options.local_ipv_4_network_cidr #=> String
@@ -37839,6 +37859,9 @@ module Aws::EC2
37839
37859
  # resp.vpn_connection.vpn_connection_id #=> String
37840
37860
  # resp.vpn_connection.vpn_gateway_id #=> String
37841
37861
  # resp.vpn_connection.transit_gateway_id #=> String
37862
+ # resp.vpn_connection.core_network_arn #=> String
37863
+ # resp.vpn_connection.core_network_attachment_arn #=> String
37864
+ # resp.vpn_connection.gateway_association_state #=> String
37842
37865
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
37843
37866
  # resp.vpn_connection.options.static_routes_only #=> Boolean
37844
37867
  # resp.vpn_connection.options.local_ipv_4_network_cidr #=> String
@@ -37960,6 +37983,9 @@ module Aws::EC2
37960
37983
  # resp.vpn_connection.vpn_connection_id #=> String
37961
37984
  # resp.vpn_connection.vpn_gateway_id #=> String
37962
37985
  # resp.vpn_connection.transit_gateway_id #=> String
37986
+ # resp.vpn_connection.core_network_arn #=> String
37987
+ # resp.vpn_connection.core_network_attachment_arn #=> String
37988
+ # resp.vpn_connection.gateway_association_state #=> String
37963
37989
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
37964
37990
  # resp.vpn_connection.options.static_routes_only #=> Boolean
37965
37991
  # resp.vpn_connection.options.local_ipv_4_network_cidr #=> String
@@ -38054,6 +38080,9 @@ module Aws::EC2
38054
38080
  # resp.vpn_connection.vpn_connection_id #=> String
38055
38081
  # resp.vpn_connection.vpn_gateway_id #=> String
38056
38082
  # resp.vpn_connection.transit_gateway_id #=> String
38083
+ # resp.vpn_connection.core_network_arn #=> String
38084
+ # resp.vpn_connection.core_network_attachment_arn #=> String
38085
+ # resp.vpn_connection.gateway_association_state #=> String
38057
38086
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
38058
38087
  # resp.vpn_connection.options.static_routes_only #=> Boolean
38059
38088
  # resp.vpn_connection.options.local_ipv_4_network_cidr #=> String
@@ -38208,6 +38237,9 @@ module Aws::EC2
38208
38237
  # resp.vpn_connection.vpn_connection_id #=> String
38209
38238
  # resp.vpn_connection.vpn_gateway_id #=> String
38210
38239
  # resp.vpn_connection.transit_gateway_id #=> String
38240
+ # resp.vpn_connection.core_network_arn #=> String
38241
+ # resp.vpn_connection.core_network_attachment_arn #=> String
38242
+ # resp.vpn_connection.gateway_association_state #=> String
38211
38243
  # resp.vpn_connection.options.enable_acceleration #=> Boolean
38212
38244
  # resp.vpn_connection.options.static_routes_only #=> Boolean
38213
38245
  # resp.vpn_connection.options.local_ipv_4_network_cidr #=> String
@@ -44161,7 +44193,7 @@ module Aws::EC2
44161
44193
  params: params,
44162
44194
  config: config)
44163
44195
  context[:gem_name] = 'aws-sdk-ec2'
44164
- context[:gem_version] = '1.268.0'
44196
+ context[:gem_version] = '1.272.0'
44165
44197
  Seahorse::Client::Request.new(handlers, context)
44166
44198
  end
44167
44199
 
@@ -874,6 +874,9 @@ module Aws::EC2
874
874
  DescribeVpnConnectionsResult = Shapes::StructureShape.new(name: 'DescribeVpnConnectionsResult')
875
875
  DescribeVpnGatewaysRequest = Shapes::StructureShape.new(name: 'DescribeVpnGatewaysRequest')
876
876
  DescribeVpnGatewaysResult = Shapes::StructureShape.new(name: 'DescribeVpnGatewaysResult')
877
+ DestinationFileFormat = Shapes::StringShape.new(name: 'DestinationFileFormat')
878
+ DestinationOptionsRequest = Shapes::StructureShape.new(name: 'DestinationOptionsRequest')
879
+ DestinationOptionsResponse = Shapes::StructureShape.new(name: 'DestinationOptionsResponse')
877
880
  DetachClassicLinkVpcRequest = Shapes::StructureShape.new(name: 'DetachClassicLinkVpcRequest')
878
881
  DetachClassicLinkVpcResult = Shapes::StructureShape.new(name: 'DetachClassicLinkVpcResult')
879
882
  DetachInternetGatewayRequest = Shapes::StructureShape.new(name: 'DetachInternetGatewayRequest')
@@ -1344,6 +1347,7 @@ module Aws::EC2
1344
1347
  InstanceStatusEventList = Shapes::ListShape.new(name: 'InstanceStatusEventList')
1345
1348
  InstanceStatusList = Shapes::ListShape.new(name: 'InstanceStatusList')
1346
1349
  InstanceStatusSummary = Shapes::StructureShape.new(name: 'InstanceStatusSummary')
1350
+ InstanceStorageEncryptionSupport = Shapes::StringShape.new(name: 'InstanceStorageEncryptionSupport')
1347
1351
  InstanceStorageFlag = Shapes::BooleanShape.new(name: 'InstanceStorageFlag')
1348
1352
  InstanceStorageInfo = Shapes::StructureShape.new(name: 'InstanceStorageInfo')
1349
1353
  InstanceTagKeySet = Shapes::ListShape.new(name: 'InstanceTagKeySet')
@@ -3588,6 +3592,7 @@ module Aws::EC2
3588
3592
  CreateFlowLogsRequest.add_member(:log_format, Shapes::ShapeRef.new(shape: String, location_name: "LogFormat"))
3589
3593
  CreateFlowLogsRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
3590
3594
  CreateFlowLogsRequest.add_member(:max_aggregation_interval, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxAggregationInterval"))
3595
+ CreateFlowLogsRequest.add_member(:destination_options, Shapes::ShapeRef.new(shape: DestinationOptionsRequest, location_name: "DestinationOptions"))
3591
3596
  CreateFlowLogsRequest.struct_class = Types::CreateFlowLogsRequest
3592
3597
 
3593
3598
  CreateFlowLogsResult.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "clientToken"))
@@ -6019,6 +6024,16 @@ module Aws::EC2
6019
6024
  DescribeVpnGatewaysResult.add_member(:vpn_gateways, Shapes::ShapeRef.new(shape: VpnGatewayList, location_name: "vpnGatewaySet"))
6020
6025
  DescribeVpnGatewaysResult.struct_class = Types::DescribeVpnGatewaysResult
6021
6026
 
6027
+ DestinationOptionsRequest.add_member(:file_format, Shapes::ShapeRef.new(shape: DestinationFileFormat, location_name: "FileFormat"))
6028
+ DestinationOptionsRequest.add_member(:hive_compatible_partitions, Shapes::ShapeRef.new(shape: Boolean, location_name: "HiveCompatiblePartitions"))
6029
+ DestinationOptionsRequest.add_member(:per_hour_partition, Shapes::ShapeRef.new(shape: Boolean, location_name: "PerHourPartition"))
6030
+ DestinationOptionsRequest.struct_class = Types::DestinationOptionsRequest
6031
+
6032
+ DestinationOptionsResponse.add_member(:file_format, Shapes::ShapeRef.new(shape: DestinationFileFormat, location_name: "fileFormat"))
6033
+ DestinationOptionsResponse.add_member(:hive_compatible_partitions, Shapes::ShapeRef.new(shape: Boolean, location_name: "hiveCompatiblePartitions"))
6034
+ DestinationOptionsResponse.add_member(:per_hour_partition, Shapes::ShapeRef.new(shape: Boolean, location_name: "perHourPartition"))
6035
+ DestinationOptionsResponse.struct_class = Types::DestinationOptionsResponse
6036
+
6022
6037
  DetachClassicLinkVpcRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
6023
6038
  DetachClassicLinkVpcRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "instanceId"))
6024
6039
  DetachClassicLinkVpcRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcId"))
@@ -6762,6 +6777,7 @@ module Aws::EC2
6762
6777
  FlowLog.add_member(:log_format, Shapes::ShapeRef.new(shape: String, location_name: "logFormat"))
6763
6778
  FlowLog.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
6764
6779
  FlowLog.add_member(:max_aggregation_interval, Shapes::ShapeRef.new(shape: Integer, location_name: "maxAggregationInterval"))
6780
+ FlowLog.add_member(:destination_options, Shapes::ShapeRef.new(shape: DestinationOptionsResponse, location_name: "destinationOptions"))
6765
6781
  FlowLog.struct_class = Types::FlowLog
6766
6782
 
6767
6783
  FlowLogIdList.member = Shapes::ShapeRef.new(shape: VpcFlowLogId, location_name: "item")
@@ -7802,6 +7818,7 @@ module Aws::EC2
7802
7818
  InstanceStorageInfo.add_member(:total_size_in_gb, Shapes::ShapeRef.new(shape: DiskSize, location_name: "totalSizeInGB"))
7803
7819
  InstanceStorageInfo.add_member(:disks, Shapes::ShapeRef.new(shape: DiskInfoList, location_name: "disks"))
7804
7820
  InstanceStorageInfo.add_member(:nvme_support, Shapes::ShapeRef.new(shape: EphemeralNvmeSupport, location_name: "nvmeSupport"))
7821
+ InstanceStorageInfo.add_member(:encryption_support, Shapes::ShapeRef.new(shape: InstanceStorageEncryptionSupport, location_name: "encryptionSupport"))
7805
7822
  InstanceStorageInfo.struct_class = Types::InstanceStorageInfo
7806
7823
 
7807
7824
  InstanceTagKeySet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
@@ -11670,6 +11687,9 @@ module Aws::EC2
11670
11687
  VpnConnection.add_member(:vpn_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpnConnectionId"))
11671
11688
  VpnConnection.add_member(:vpn_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "vpnGatewayId"))
11672
11689
  VpnConnection.add_member(:transit_gateway_id, Shapes::ShapeRef.new(shape: String, location_name: "transitGatewayId"))
11690
+ VpnConnection.add_member(:core_network_arn, Shapes::ShapeRef.new(shape: String, location_name: "coreNetworkArn"))
11691
+ VpnConnection.add_member(:core_network_attachment_arn, Shapes::ShapeRef.new(shape: String, location_name: "coreNetworkAttachmentArn"))
11692
+ VpnConnection.add_member(:gateway_association_state, Shapes::ShapeRef.new(shape: String, location_name: "gatewayAssociationState"))
11673
11693
  VpnConnection.add_member(:options, Shapes::ShapeRef.new(shape: VpnConnectionOptions, location_name: "options"))
11674
11694
  VpnConnection.add_member(:routes, Shapes::ShapeRef.new(shape: VpnStaticRouteList, location_name: "routes"))
11675
11695
  VpnConnection.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
@@ -7298,6 +7298,11 @@ module Aws::EC2
7298
7298
  # },
7299
7299
  # ],
7300
7300
  # max_aggregation_interval: 1,
7301
+ # destination_options: {
7302
+ # file_format: "plain-text", # accepts plain-text, parquet
7303
+ # hive_compatible_partitions: false,
7304
+ # per_hour_partition: false,
7305
+ # },
7301
7306
  # }
7302
7307
  #
7303
7308
  # @!attribute [rw] dry_run
@@ -7352,8 +7357,8 @@ module Aws::EC2
7352
7357
  # @return [String]
7353
7358
  #
7354
7359
  # @!attribute [rw] log_destination_type
7355
- # Specifies the type of destination to which the flow log data is to
7356
- # be published. Flow log data can be published to CloudWatch Logs or
7360
+ # The type of destination to which the flow log data is to be
7361
+ # published. Flow log data can be published to CloudWatch Logs or
7357
7362
  # Amazon S3. To publish flow log data to CloudWatch Logs, specify
7358
7363
  # `cloud-watch-logs`. To publish flow log data to Amazon S3, specify
7359
7364
  # `s3`.
@@ -7365,10 +7370,10 @@ module Aws::EC2
7365
7370
  # @return [String]
7366
7371
  #
7367
7372
  # @!attribute [rw] log_destination
7368
- # Specifies the destination to which the flow log data is to be
7369
- # published. Flow log data can be published to a CloudWatch Logs log
7370
- # group or an Amazon S3 bucket. The value specified for this parameter
7371
- # depends on the value specified for `LogDestinationType`.
7373
+ # The destination to which the flow log data is to be published. Flow
7374
+ # log data can be published to a CloudWatch Logs log group or an
7375
+ # Amazon S3 bucket. The value specified for this parameter depends on
7376
+ # the value specified for `LogDestinationType`.
7372
7377
  #
7373
7378
  # If `LogDestinationType` is not specified or `cloud-watch-logs`,
7374
7379
  # specify the Amazon Resource Name (ARN) of the CloudWatch Logs log
@@ -7421,6 +7426,10 @@ module Aws::EC2
7421
7426
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
7422
7427
  # @return [Integer]
7423
7428
  #
7429
+ # @!attribute [rw] destination_options
7430
+ # The destination options.
7431
+ # @return [Types::DestinationOptionsRequest]
7432
+ #
7424
7433
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateFlowLogsRequest AWS API Documentation
7425
7434
  #
7426
7435
  class CreateFlowLogsRequest < Struct.new(
@@ -7435,7 +7444,8 @@ module Aws::EC2
7435
7444
  :log_destination,
7436
7445
  :log_format,
7437
7446
  :tag_specifications,
7438
- :max_aggregation_interval)
7447
+ :max_aggregation_interval,
7448
+ :destination_options)
7439
7449
  SENSITIVE = []
7440
7450
  include Aws::Structure
7441
7451
  end
@@ -19259,9 +19269,12 @@ module Aws::EC2
19259
19269
  # * `instance-storage-info.disk.type` - The storage technology for the
19260
19270
  # local instance storage disks (`hdd` \| `ssd`).
19261
19271
  #
19272
+ # * `instance-storage-info.encryption-supported` - Indicates whether
19273
+ # data is encrypted at rest (`required` \| `unsupported`).
19274
+ #
19262
19275
  # * `instance-storage-info.nvme-support` - Indicates whether
19263
19276
  # non-volatile memory express (NVMe) is supported for instance store
19264
- # (`required` \| `supported`) \| `unsupported`).
19277
+ # (`required` \| `supported` \| `unsupported`).
19265
19278
  #
19266
19279
  # * `instance-storage-info.total-size-in-gb` - The total amount of
19267
19280
  # storage available from all local instance storage, in GB.
@@ -26869,6 +26882,66 @@ module Aws::EC2
26869
26882
  include Aws::Structure
26870
26883
  end
26871
26884
 
26885
+ # Describes the destination options for a flow log.
26886
+ #
26887
+ # @note When making an API call, you may pass DestinationOptionsRequest
26888
+ # data as a hash:
26889
+ #
26890
+ # {
26891
+ # file_format: "plain-text", # accepts plain-text, parquet
26892
+ # hive_compatible_partitions: false,
26893
+ # per_hour_partition: false,
26894
+ # }
26895
+ #
26896
+ # @!attribute [rw] file_format
26897
+ # The format for the flow log. The default is `plain-text`.
26898
+ # @return [String]
26899
+ #
26900
+ # @!attribute [rw] hive_compatible_partitions
26901
+ # Indicates whether to use Hive-compatible prefixes for flow logs
26902
+ # stored in Amazon S3. The default is `false`.
26903
+ # @return [Boolean]
26904
+ #
26905
+ # @!attribute [rw] per_hour_partition
26906
+ # Indicates whether to partition the flow log per hour. This reduces
26907
+ # the cost and response time for queries. The default is `false`.
26908
+ # @return [Boolean]
26909
+ #
26910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DestinationOptionsRequest AWS API Documentation
26911
+ #
26912
+ class DestinationOptionsRequest < Struct.new(
26913
+ :file_format,
26914
+ :hive_compatible_partitions,
26915
+ :per_hour_partition)
26916
+ SENSITIVE = []
26917
+ include Aws::Structure
26918
+ end
26919
+
26920
+ # Describes the destination options for a flow log.
26921
+ #
26922
+ # @!attribute [rw] file_format
26923
+ # The format for the flow log.
26924
+ # @return [String]
26925
+ #
26926
+ # @!attribute [rw] hive_compatible_partitions
26927
+ # Indicates whether to use Hive-compatible prefixes for flow logs
26928
+ # stored in Amazon S3.
26929
+ # @return [Boolean]
26930
+ #
26931
+ # @!attribute [rw] per_hour_partition
26932
+ # Indicates whether to partition the flow log per hour.
26933
+ # @return [Boolean]
26934
+ #
26935
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DestinationOptionsResponse AWS API Documentation
26936
+ #
26937
+ class DestinationOptionsResponse < Struct.new(
26938
+ :file_format,
26939
+ :hive_compatible_partitions,
26940
+ :per_hour_partition)
26941
+ SENSITIVE = []
26942
+ include Aws::Structure
26943
+ end
26944
+
26872
26945
  # @note When making an API call, you may pass DetachClassicLinkVpcRequest
26873
26946
  # data as a hash:
26874
26947
  #
@@ -28275,7 +28348,7 @@ module Aws::EC2
28275
28348
  include Aws::Structure
28276
28349
  end
28277
28350
 
28278
- # Describes the disk.
28351
+ # Describes a disk.
28279
28352
  #
28280
28353
  # @!attribute [rw] size_in_gb
28281
28354
  # The size of the disk in GB.
@@ -31139,15 +31212,14 @@ module Aws::EC2
31139
31212
  # @return [String]
31140
31213
  #
31141
31214
  # @!attribute [rw] log_destination_type
31142
- # Specifies the type of destination to which the flow log data is
31143
- # published. Flow log data can be published to CloudWatch Logs or
31144
- # Amazon S3.
31215
+ # The type of destination to which the flow log data is published.
31216
+ # Flow log data can be published to CloudWatch Logs or Amazon S3.
31145
31217
  # @return [String]
31146
31218
  #
31147
31219
  # @!attribute [rw] log_destination
31148
- # Specifies the destination to which the flow log data is published.
31149
- # Flow log data can be published to an CloudWatch Logs log group or an
31150
- # Amazon S3 bucket. If the flow log publishes to CloudWatch Logs, this
31220
+ # The destination to which the flow log data is published. Flow log
31221
+ # data can be published to an CloudWatch Logs log group or an Amazon
31222
+ # S3 bucket. If the flow log publishes to CloudWatch Logs, this
31151
31223
  # element indicates the Amazon Resource Name (ARN) of the CloudWatch
31152
31224
  # Logs log group to which the data is published. If the flow log
31153
31225
  # publishes to Amazon S3, this element indicates the ARN of the Amazon
@@ -31177,6 +31249,10 @@ module Aws::EC2
31177
31249
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-types.html#ec2-nitro-instances
31178
31250
  # @return [Integer]
31179
31251
  #
31252
+ # @!attribute [rw] destination_options
31253
+ # The destination options.
31254
+ # @return [Types::DestinationOptionsResponse]
31255
+ #
31180
31256
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FlowLog AWS API Documentation
31181
31257
  #
31182
31258
  class FlowLog < Struct.new(
@@ -31193,7 +31269,8 @@ module Aws::EC2
31193
31269
  :log_destination,
31194
31270
  :log_format,
31195
31271
  :tags,
31196
- :max_aggregation_interval)
31272
+ :max_aggregation_interval,
31273
+ :destination_options)
31197
31274
  SENSITIVE = []
31198
31275
  include Aws::Structure
31199
31276
  end
@@ -37011,7 +37088,8 @@ module Aws::EC2
37011
37088
  include Aws::Structure
37012
37089
  end
37013
37090
 
37014
- # Describes the disks that are available for the instance type.
37091
+ # Describes the instance store features that are supported by the
37092
+ # instance type.
37015
37093
  #
37016
37094
  # @!attribute [rw] total_size_in_gb
37017
37095
  # The total size of the disks, in GB.
@@ -37022,8 +37100,11 @@ module Aws::EC2
37022
37100
  # @return [Array<Types::DiskInfo>]
37023
37101
  #
37024
37102
  # @!attribute [rw] nvme_support
37025
- # Indicates whether non-volatile memory express (NVMe) is supported
37026
- # for instance store.
37103
+ # Indicates whether non-volatile memory express (NVMe) is supported.
37104
+ # @return [String]
37105
+ #
37106
+ # @!attribute [rw] encryption_support
37107
+ # Indicates whether data is encrypted at rest.
37027
37108
  # @return [String]
37028
37109
  #
37029
37110
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStorageInfo AWS API Documentation
@@ -37031,7 +37112,8 @@ module Aws::EC2
37031
37112
  class InstanceStorageInfo < Struct.new(
37032
37113
  :total_size_in_gb,
37033
37114
  :disks,
37034
- :nvme_support)
37115
+ :nvme_support,
37116
+ :encryption_support)
37035
37117
  SENSITIVE = []
37036
37118
  include Aws::Structure
37037
37119
  end
@@ -59695,6 +59777,18 @@ module Aws::EC2
59695
59777
  # The ID of the transit gateway associated with the VPN connection.
59696
59778
  # @return [String]
59697
59779
  #
59780
+ # @!attribute [rw] core_network_arn
59781
+ # The ARN of the core network.
59782
+ # @return [String]
59783
+ #
59784
+ # @!attribute [rw] core_network_attachment_arn
59785
+ # The ARN of the core network attachment.
59786
+ # @return [String]
59787
+ #
59788
+ # @!attribute [rw] gateway_association_state
59789
+ # The current state of the gateway association.
59790
+ # @return [String]
59791
+ #
59698
59792
  # @!attribute [rw] options
59699
59793
  # The VPN connection options.
59700
59794
  # @return [Types::VpnConnectionOptions]
@@ -59722,6 +59816,9 @@ module Aws::EC2
59722
59816
  :vpn_connection_id,
59723
59817
  :vpn_gateway_id,
59724
59818
  :transit_gateway_id,
59819
+ :core_network_arn,
59820
+ :core_network_attachment_arn,
59821
+ :gateway_association_state,
59725
59822
  :options,
59726
59823
  :routes,
59727
59824
  :tags,
data/lib/aws-sdk-ec2.rb CHANGED
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.268.0'
75
+ GEM_VERSION = '1.272.0'
76
76
 
77
77
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.268.0
4
+ version: 1.272.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-11 00:00:00.000000000 Z
11
+ date: 2021-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '3'
34
34
  - - ">="
35
35
  - !ruby/object:Gem::Version
36
- version: 3.120.0
36
+ version: 3.121.2
37
37
  type: :runtime
38
38
  prerelease: false
39
39
  version_requirements: !ruby/object:Gem::Requirement
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '3'
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 3.120.0
46
+ version: 3.121.2
47
47
  description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
48
48
  This gem is part of the AWS SDK for Ruby.
49
49
  email: