aws-sdk-ec2 1.267.0 → 1.271.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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")