aws-sdk-ec2 1.370.0 → 1.371.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +614 -16
- data/lib/aws-sdk-ec2/client_api.rb +96 -2
- data/lib/aws-sdk-ec2/resource.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +402 -27
- data/lib/aws-sdk-ec2/vpc.rb +1 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -576,21 +576,56 @@ module Aws::EC2
|
|
576
576
|
include Aws::Structure
|
577
577
|
end
|
578
578
|
|
579
|
-
# Describes an additional detail for a path analysis.
|
579
|
+
# Describes an additional detail for a path analysis. For more
|
580
|
+
# information, see [Reachability Analyzer additional detail codes][1].
|
581
|
+
#
|
582
|
+
#
|
583
|
+
#
|
584
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/reachability/additional-detail-codes.html
|
580
585
|
#
|
581
586
|
# @!attribute [rw] additional_detail_type
|
582
|
-
# The
|
587
|
+
# The additional detail code.
|
583
588
|
# @return [String]
|
584
589
|
#
|
585
590
|
# @!attribute [rw] component
|
586
591
|
# The path component.
|
587
592
|
# @return [Types::AnalysisComponent]
|
588
593
|
#
|
594
|
+
# @!attribute [rw] vpc_endpoint_service
|
595
|
+
# The VPC endpoint service.
|
596
|
+
# @return [Types::AnalysisComponent]
|
597
|
+
#
|
598
|
+
# @!attribute [rw] rule_options
|
599
|
+
# The rule options.
|
600
|
+
# @return [Array<Types::RuleOption>]
|
601
|
+
#
|
602
|
+
# @!attribute [rw] rule_group_type_pairs
|
603
|
+
# The rule group type.
|
604
|
+
# @return [Array<Types::RuleGroupTypePair>]
|
605
|
+
#
|
606
|
+
# @!attribute [rw] rule_group_rule_options_pairs
|
607
|
+
# The rule options.
|
608
|
+
# @return [Array<Types::RuleGroupRuleOptionsPair>]
|
609
|
+
#
|
610
|
+
# @!attribute [rw] service_name
|
611
|
+
# The name of the VPC endpoint service.
|
612
|
+
# @return [String]
|
613
|
+
#
|
614
|
+
# @!attribute [rw] load_balancers
|
615
|
+
# The load balancers.
|
616
|
+
# @return [Array<Types::AnalysisComponent>]
|
617
|
+
#
|
589
618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AdditionalDetail AWS API Documentation
|
590
619
|
#
|
591
620
|
class AdditionalDetail < Struct.new(
|
592
621
|
:additional_detail_type,
|
593
|
-
:component
|
622
|
+
:component,
|
623
|
+
:vpc_endpoint_service,
|
624
|
+
:rule_options,
|
625
|
+
:rule_group_type_pairs,
|
626
|
+
:rule_group_rule_options_pairs,
|
627
|
+
:service_name,
|
628
|
+
:load_balancers)
|
594
629
|
SENSITIVE = []
|
595
630
|
include Aws::Structure
|
596
631
|
end
|
@@ -1389,6 +1424,18 @@ module Aws::EC2
|
|
1389
1424
|
# * blackhole
|
1390
1425
|
# @return [String]
|
1391
1426
|
#
|
1427
|
+
# @!attribute [rw] carrier_gateway_id
|
1428
|
+
# The ID of a carrier gateway.
|
1429
|
+
# @return [String]
|
1430
|
+
#
|
1431
|
+
# @!attribute [rw] core_network_arn
|
1432
|
+
# The Amazon Resource Name (ARN) of a core network.
|
1433
|
+
# @return [String]
|
1434
|
+
#
|
1435
|
+
# @!attribute [rw] local_gateway_id
|
1436
|
+
# The ID of a local gateway.
|
1437
|
+
# @return [String]
|
1438
|
+
#
|
1392
1439
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AnalysisRouteTableRoute AWS API Documentation
|
1393
1440
|
#
|
1394
1441
|
class AnalysisRouteTableRoute < Struct.new(
|
@@ -1402,7 +1449,10 @@ module Aws::EC2
|
|
1402
1449
|
:origin,
|
1403
1450
|
:transit_gateway_id,
|
1404
1451
|
:vpc_peering_connection_id,
|
1405
|
-
:state
|
1452
|
+
:state,
|
1453
|
+
:carrier_gateway_id,
|
1454
|
+
:core_network_arn,
|
1455
|
+
:local_gateway_id)
|
1406
1456
|
SENSITIVE = []
|
1407
1457
|
include Aws::Structure
|
1408
1458
|
end
|
@@ -9013,22 +9063,21 @@ module Aws::EC2
|
|
9013
9063
|
end
|
9014
9064
|
|
9015
9065
|
# @!attribute [rw] source_ip
|
9016
|
-
# The IP address of the
|
9017
|
-
# source of the path.
|
9066
|
+
# The IP address of the source.
|
9018
9067
|
# @return [String]
|
9019
9068
|
#
|
9020
9069
|
# @!attribute [rw] destination_ip
|
9021
|
-
# The IP address of the
|
9022
|
-
# destination of the path.
|
9070
|
+
# The IP address of the destination.
|
9023
9071
|
# @return [String]
|
9024
9072
|
#
|
9025
9073
|
# @!attribute [rw] source
|
9026
|
-
# The
|
9074
|
+
# The ID or ARN of the source. If the resource is in another account,
|
9075
|
+
# you must specify an ARN.
|
9027
9076
|
# @return [String]
|
9028
9077
|
#
|
9029
9078
|
# @!attribute [rw] destination
|
9030
|
-
# The
|
9031
|
-
#
|
9079
|
+
# The ID or ARN of the destination. If the resource is in another
|
9080
|
+
# account, you must specify an ARN.
|
9032
9081
|
# @return [String]
|
9033
9082
|
#
|
9034
9083
|
# @!attribute [rw] protocol
|
@@ -9063,6 +9112,18 @@ module Aws::EC2
|
|
9063
9112
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
9064
9113
|
# @return [String]
|
9065
9114
|
#
|
9115
|
+
# @!attribute [rw] filter_at_source
|
9116
|
+
# Scopes the analysis to network paths that match specific filters at
|
9117
|
+
# the source. If you specify this parameter, you can't specify the
|
9118
|
+
# parameters for the source IP address or the destination port.
|
9119
|
+
# @return [Types::PathRequestFilter]
|
9120
|
+
#
|
9121
|
+
# @!attribute [rw] filter_at_destination
|
9122
|
+
# Scopes the analysis to network paths that match specific filters at
|
9123
|
+
# the destination. If you specify this parameter, you can't specify
|
9124
|
+
# the parameter for the destination IP address.
|
9125
|
+
# @return [Types::PathRequestFilter]
|
9126
|
+
#
|
9066
9127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateNetworkInsightsPathRequest AWS API Documentation
|
9067
9128
|
#
|
9068
9129
|
class CreateNetworkInsightsPathRequest < Struct.new(
|
@@ -9074,7 +9135,9 @@ module Aws::EC2
|
|
9074
9135
|
:destination_port,
|
9075
9136
|
:tag_specifications,
|
9076
9137
|
:dry_run,
|
9077
|
-
:client_token
|
9138
|
+
:client_token,
|
9139
|
+
:filter_at_source,
|
9140
|
+
:filter_at_destination)
|
9078
9141
|
SENSITIVE = []
|
9079
9142
|
include Aws::Structure
|
9080
9143
|
end
|
@@ -9750,7 +9813,7 @@ module Aws::EC2
|
|
9750
9813
|
end
|
9751
9814
|
|
9752
9815
|
# @!attribute [rw] description
|
9753
|
-
# A description for the security group.
|
9816
|
+
# A description for the security group.
|
9754
9817
|
#
|
9755
9818
|
# Constraints: Up to 255 characters in length
|
9756
9819
|
#
|
@@ -21241,7 +21304,29 @@ module Aws::EC2
|
|
21241
21304
|
#
|
21242
21305
|
# * destination - The ID of the resource.
|
21243
21306
|
#
|
21244
|
-
# *
|
21307
|
+
# * filter-at-source.source-address - The source IPv4 address at the
|
21308
|
+
# source.
|
21309
|
+
#
|
21310
|
+
# * filter-at-source.source-port-range - The source port range at the
|
21311
|
+
# source.
|
21312
|
+
#
|
21313
|
+
# * filter-at-source.destination-address - The destination IPv4
|
21314
|
+
# address at the source.
|
21315
|
+
#
|
21316
|
+
# * filter-at-source.destination-port-range - The destination port
|
21317
|
+
# range at the source.
|
21318
|
+
#
|
21319
|
+
# * filter-at-destination.source-address - The source IPv4 address at
|
21320
|
+
# the destination.
|
21321
|
+
#
|
21322
|
+
# * filter-at-destination.source-port-range - The source port range at
|
21323
|
+
# the destination.
|
21324
|
+
#
|
21325
|
+
# * filter-at-destination.destination-address - The destination IPv4
|
21326
|
+
# address at the destination.
|
21327
|
+
#
|
21328
|
+
# * filter-at-destination.destination-port-range - The destination
|
21329
|
+
# port range at the destination.
|
21245
21330
|
#
|
21246
21331
|
# * protocol - The protocol.
|
21247
21332
|
#
|
@@ -28244,7 +28329,7 @@ module Aws::EC2
|
|
28244
28329
|
:bytes,
|
28245
28330
|
:format,
|
28246
28331
|
:import_manifest_url)
|
28247
|
-
SENSITIVE = []
|
28332
|
+
SENSITIVE = [:import_manifest_url]
|
28248
28333
|
include Aws::Structure
|
28249
28334
|
end
|
28250
28335
|
|
@@ -30007,6 +30092,14 @@ module Aws::EC2
|
|
30007
30092
|
# The Region for the component.
|
30008
30093
|
# @return [String]
|
30009
30094
|
#
|
30095
|
+
# @!attribute [rw] firewall_stateless_rule
|
30096
|
+
# The Network Firewall stateless rule.
|
30097
|
+
# @return [Types::FirewallStatelessRule]
|
30098
|
+
#
|
30099
|
+
# @!attribute [rw] firewall_stateful_rule
|
30100
|
+
# The Network Firewall stateful rule.
|
30101
|
+
# @return [Types::FirewallStatefulRule]
|
30102
|
+
#
|
30010
30103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Explanation AWS API Documentation
|
30011
30104
|
#
|
30012
30105
|
class Explanation < Struct.new(
|
@@ -30060,7 +30153,9 @@ module Aws::EC2
|
|
30060
30153
|
:transit_gateway_route_table_route,
|
30061
30154
|
:transit_gateway_attachment,
|
30062
30155
|
:component_account,
|
30063
|
-
:component_region
|
30156
|
+
:component_region,
|
30157
|
+
:firewall_stateless_rule,
|
30158
|
+
:firewall_stateful_rule)
|
30064
30159
|
SENSITIVE = []
|
30065
30160
|
include Aws::Structure
|
30066
30161
|
end
|
@@ -30731,6 +30826,125 @@ module Aws::EC2
|
|
30731
30826
|
include Aws::Structure
|
30732
30827
|
end
|
30733
30828
|
|
30829
|
+
# Describes a port range.
|
30830
|
+
#
|
30831
|
+
# @!attribute [rw] from_port
|
30832
|
+
# The first port in the range.
|
30833
|
+
# @return [Integer]
|
30834
|
+
#
|
30835
|
+
# @!attribute [rw] to_port
|
30836
|
+
# The last port in the range.
|
30837
|
+
# @return [Integer]
|
30838
|
+
#
|
30839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FilterPortRange AWS API Documentation
|
30840
|
+
#
|
30841
|
+
class FilterPortRange < Struct.new(
|
30842
|
+
:from_port,
|
30843
|
+
:to_port)
|
30844
|
+
SENSITIVE = []
|
30845
|
+
include Aws::Structure
|
30846
|
+
end
|
30847
|
+
|
30848
|
+
# Describes a stateful rule.
|
30849
|
+
#
|
30850
|
+
# @!attribute [rw] rule_group_arn
|
30851
|
+
# The ARN of the stateful rule group.
|
30852
|
+
# @return [String]
|
30853
|
+
#
|
30854
|
+
# @!attribute [rw] sources
|
30855
|
+
# The source IP addresses, in CIDR notation.
|
30856
|
+
# @return [Array<String>]
|
30857
|
+
#
|
30858
|
+
# @!attribute [rw] destinations
|
30859
|
+
# The destination IP addresses, in CIDR notation.
|
30860
|
+
# @return [Array<String>]
|
30861
|
+
#
|
30862
|
+
# @!attribute [rw] source_ports
|
30863
|
+
# The source ports.
|
30864
|
+
# @return [Array<Types::PortRange>]
|
30865
|
+
#
|
30866
|
+
# @!attribute [rw] destination_ports
|
30867
|
+
# The destination ports.
|
30868
|
+
# @return [Array<Types::PortRange>]
|
30869
|
+
#
|
30870
|
+
# @!attribute [rw] protocol
|
30871
|
+
# The protocol.
|
30872
|
+
# @return [String]
|
30873
|
+
#
|
30874
|
+
# @!attribute [rw] rule_action
|
30875
|
+
# The rule action. The possible values are `pass`, `drop`, and
|
30876
|
+
# `alert`.
|
30877
|
+
# @return [String]
|
30878
|
+
#
|
30879
|
+
# @!attribute [rw] direction
|
30880
|
+
# The direction. The possible values are `FORWARD` and `ANY`.
|
30881
|
+
# @return [String]
|
30882
|
+
#
|
30883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FirewallStatefulRule AWS API Documentation
|
30884
|
+
#
|
30885
|
+
class FirewallStatefulRule < Struct.new(
|
30886
|
+
:rule_group_arn,
|
30887
|
+
:sources,
|
30888
|
+
:destinations,
|
30889
|
+
:source_ports,
|
30890
|
+
:destination_ports,
|
30891
|
+
:protocol,
|
30892
|
+
:rule_action,
|
30893
|
+
:direction)
|
30894
|
+
SENSITIVE = []
|
30895
|
+
include Aws::Structure
|
30896
|
+
end
|
30897
|
+
|
30898
|
+
# Describes a stateless rule.
|
30899
|
+
#
|
30900
|
+
# @!attribute [rw] rule_group_arn
|
30901
|
+
# The ARN of the stateless rule group.
|
30902
|
+
# @return [String]
|
30903
|
+
#
|
30904
|
+
# @!attribute [rw] sources
|
30905
|
+
# The source IP addresses, in CIDR notation.
|
30906
|
+
# @return [Array<String>]
|
30907
|
+
#
|
30908
|
+
# @!attribute [rw] destinations
|
30909
|
+
# The destination IP addresses, in CIDR notation.
|
30910
|
+
# @return [Array<String>]
|
30911
|
+
#
|
30912
|
+
# @!attribute [rw] source_ports
|
30913
|
+
# The source ports.
|
30914
|
+
# @return [Array<Types::PortRange>]
|
30915
|
+
#
|
30916
|
+
# @!attribute [rw] destination_ports
|
30917
|
+
# The destination ports.
|
30918
|
+
# @return [Array<Types::PortRange>]
|
30919
|
+
#
|
30920
|
+
# @!attribute [rw] protocols
|
30921
|
+
# The protocols.
|
30922
|
+
# @return [Array<Integer>]
|
30923
|
+
#
|
30924
|
+
# @!attribute [rw] rule_action
|
30925
|
+
# The rule action. The possible values are `pass`, `drop`, and
|
30926
|
+
# `forward_to_site`.
|
30927
|
+
# @return [String]
|
30928
|
+
#
|
30929
|
+
# @!attribute [rw] priority
|
30930
|
+
# The rule priority.
|
30931
|
+
# @return [Integer]
|
30932
|
+
#
|
30933
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FirewallStatelessRule AWS API Documentation
|
30934
|
+
#
|
30935
|
+
class FirewallStatelessRule < Struct.new(
|
30936
|
+
:rule_group_arn,
|
30937
|
+
:sources,
|
30938
|
+
:destinations,
|
30939
|
+
:source_ports,
|
30940
|
+
:destination_ports,
|
30941
|
+
:protocols,
|
30942
|
+
:rule_action,
|
30943
|
+
:priority)
|
30944
|
+
SENSITIVE = []
|
30945
|
+
include Aws::Structure
|
30946
|
+
end
|
30947
|
+
|
30734
30948
|
# Information about a Capacity Reservation in a Capacity Reservation
|
30735
30949
|
# Fleet.
|
30736
30950
|
#
|
@@ -48069,8 +48283,8 @@ module Aws::EC2
|
|
48069
48283
|
# @return [Array<String>]
|
48070
48284
|
#
|
48071
48285
|
# @!attribute [rw] filter_in_arns
|
48072
|
-
# The Amazon Resource Names (ARN) of the
|
48073
|
-
#
|
48286
|
+
# The Amazon Resource Names (ARN) of the resources that the path must
|
48287
|
+
# traverse.
|
48074
48288
|
# @return [Array<String>]
|
48075
48289
|
#
|
48076
48290
|
# @!attribute [rw] start_date
|
@@ -48160,12 +48374,11 @@ module Aws::EC2
|
|
48160
48374
|
# @return [Time]
|
48161
48375
|
#
|
48162
48376
|
# @!attribute [rw] source
|
48163
|
-
# The
|
48377
|
+
# The ID of the source.
|
48164
48378
|
# @return [String]
|
48165
48379
|
#
|
48166
48380
|
# @!attribute [rw] destination
|
48167
|
-
# The
|
48168
|
-
# path.
|
48381
|
+
# The ID of the destination.
|
48169
48382
|
# @return [String]
|
48170
48383
|
#
|
48171
48384
|
# @!attribute [rw] source_arn
|
@@ -48177,13 +48390,11 @@ module Aws::EC2
|
|
48177
48390
|
# @return [String]
|
48178
48391
|
#
|
48179
48392
|
# @!attribute [rw] source_ip
|
48180
|
-
# The IP address of the
|
48181
|
-
# source of the path.
|
48393
|
+
# The IP address of the source.
|
48182
48394
|
# @return [String]
|
48183
48395
|
#
|
48184
48396
|
# @!attribute [rw] destination_ip
|
48185
|
-
# The IP address of the
|
48186
|
-
# destination of the path.
|
48397
|
+
# The IP address of the destination.
|
48187
48398
|
# @return [String]
|
48188
48399
|
#
|
48189
48400
|
# @!attribute [rw] protocol
|
@@ -48198,6 +48409,16 @@ module Aws::EC2
|
|
48198
48409
|
# The tags associated with the path.
|
48199
48410
|
# @return [Array<Types::Tag>]
|
48200
48411
|
#
|
48412
|
+
# @!attribute [rw] filter_at_source
|
48413
|
+
# Scopes the analysis to network paths that match specific filters at
|
48414
|
+
# the source.
|
48415
|
+
# @return [Types::PathFilter]
|
48416
|
+
#
|
48417
|
+
# @!attribute [rw] filter_at_destination
|
48418
|
+
# Scopes the analysis to network paths that match specific filters at
|
48419
|
+
# the destination.
|
48420
|
+
# @return [Types::PathFilter]
|
48421
|
+
#
|
48201
48422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInsightsPath AWS API Documentation
|
48202
48423
|
#
|
48203
48424
|
class NetworkInsightsPath < Struct.new(
|
@@ -48212,7 +48433,9 @@ module Aws::EC2
|
|
48212
48433
|
:destination_ip,
|
48213
48434
|
:protocol,
|
48214
48435
|
:destination_port,
|
48215
|
-
:tags
|
48436
|
+
:tags,
|
48437
|
+
:filter_at_source,
|
48438
|
+
:filter_at_destination)
|
48216
48439
|
SENSITIVE = []
|
48217
48440
|
include Aws::Structure
|
48218
48441
|
end
|
@@ -48985,6 +49208,18 @@ module Aws::EC2
|
|
48985
49208
|
# The load balancer listener.
|
48986
49209
|
# @return [Types::AnalysisComponent]
|
48987
49210
|
#
|
49211
|
+
# @!attribute [rw] firewall_stateless_rule
|
49212
|
+
# The Network Firewall stateless rule.
|
49213
|
+
# @return [Types::FirewallStatelessRule]
|
49214
|
+
#
|
49215
|
+
# @!attribute [rw] firewall_stateful_rule
|
49216
|
+
# The Network Firewall stateful rule.
|
49217
|
+
# @return [Types::FirewallStatefulRule]
|
49218
|
+
#
|
49219
|
+
# @!attribute [rw] service_name
|
49220
|
+
# The name of the VPC endpoint service.
|
49221
|
+
# @return [String]
|
49222
|
+
#
|
48988
49223
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathComponent AWS API Documentation
|
48989
49224
|
#
|
48990
49225
|
class PathComponent < Struct.new(
|
@@ -49004,7 +49239,70 @@ module Aws::EC2
|
|
49004
49239
|
:transit_gateway,
|
49005
49240
|
:transit_gateway_route_table_route,
|
49006
49241
|
:explanations,
|
49007
|
-
:elastic_load_balancer_listener
|
49242
|
+
:elastic_load_balancer_listener,
|
49243
|
+
:firewall_stateless_rule,
|
49244
|
+
:firewall_stateful_rule,
|
49245
|
+
:service_name)
|
49246
|
+
SENSITIVE = []
|
49247
|
+
include Aws::Structure
|
49248
|
+
end
|
49249
|
+
|
49250
|
+
# Describes a set of filters for a path analysis. Use path filters to
|
49251
|
+
# scope the analysis when there can be multiple resulting paths.
|
49252
|
+
#
|
49253
|
+
# @!attribute [rw] source_address
|
49254
|
+
# The source IPv4 address.
|
49255
|
+
# @return [String]
|
49256
|
+
#
|
49257
|
+
# @!attribute [rw] source_port_range
|
49258
|
+
# The source port range.
|
49259
|
+
# @return [Types::FilterPortRange]
|
49260
|
+
#
|
49261
|
+
# @!attribute [rw] destination_address
|
49262
|
+
# The destination IPv4 address.
|
49263
|
+
# @return [String]
|
49264
|
+
#
|
49265
|
+
# @!attribute [rw] destination_port_range
|
49266
|
+
# The destination port range.
|
49267
|
+
# @return [Types::FilterPortRange]
|
49268
|
+
#
|
49269
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathFilter AWS API Documentation
|
49270
|
+
#
|
49271
|
+
class PathFilter < Struct.new(
|
49272
|
+
:source_address,
|
49273
|
+
:source_port_range,
|
49274
|
+
:destination_address,
|
49275
|
+
:destination_port_range)
|
49276
|
+
SENSITIVE = []
|
49277
|
+
include Aws::Structure
|
49278
|
+
end
|
49279
|
+
|
49280
|
+
# Describes a set of filters for a path analysis. Use path filters to
|
49281
|
+
# scope the analysis when there can be multiple resulting paths.
|
49282
|
+
#
|
49283
|
+
# @!attribute [rw] source_address
|
49284
|
+
# The source IPv4 address.
|
49285
|
+
# @return [String]
|
49286
|
+
#
|
49287
|
+
# @!attribute [rw] source_port_range
|
49288
|
+
# The source port range.
|
49289
|
+
# @return [Types::RequestFilterPortRange]
|
49290
|
+
#
|
49291
|
+
# @!attribute [rw] destination_address
|
49292
|
+
# The destination IPv4 address.
|
49293
|
+
# @return [String]
|
49294
|
+
#
|
49295
|
+
# @!attribute [rw] destination_port_range
|
49296
|
+
# The destination port range.
|
49297
|
+
# @return [Types::RequestFilterPortRange]
|
49298
|
+
#
|
49299
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PathRequestFilter AWS API Documentation
|
49300
|
+
#
|
49301
|
+
class PathRequestFilter < Struct.new(
|
49302
|
+
:source_address,
|
49303
|
+
:source_port_range,
|
49304
|
+
:destination_address,
|
49305
|
+
:destination_port_range)
|
49008
49306
|
SENSITIVE = []
|
49009
49307
|
include Aws::Structure
|
49010
49308
|
end
|
@@ -51883,6 +52181,25 @@ module Aws::EC2
|
|
51883
52181
|
include Aws::Structure
|
51884
52182
|
end
|
51885
52183
|
|
52184
|
+
# Describes a port range.
|
52185
|
+
#
|
52186
|
+
# @!attribute [rw] from_port
|
52187
|
+
# The first port in the range.
|
52188
|
+
# @return [Integer]
|
52189
|
+
#
|
52190
|
+
# @!attribute [rw] to_port
|
52191
|
+
# The last port in the range.
|
52192
|
+
# @return [Integer]
|
52193
|
+
#
|
52194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestFilterPortRange AWS API Documentation
|
52195
|
+
#
|
52196
|
+
class RequestFilterPortRange < Struct.new(
|
52197
|
+
:from_port,
|
52198
|
+
:to_port)
|
52199
|
+
SENSITIVE = []
|
52200
|
+
include Aws::Structure
|
52201
|
+
end
|
52202
|
+
|
51886
52203
|
# A tag on an IPAM resource.
|
51887
52204
|
#
|
51888
52205
|
# @!attribute [rw] key
|
@@ -54328,6 +54645,64 @@ module Aws::EC2
|
|
54328
54645
|
include Aws::Structure
|
54329
54646
|
end
|
54330
54647
|
|
54648
|
+
# Describes the rule options for a stateful rule group.
|
54649
|
+
#
|
54650
|
+
# @!attribute [rw] rule_group_arn
|
54651
|
+
# The ARN of the rule group.
|
54652
|
+
# @return [String]
|
54653
|
+
#
|
54654
|
+
# @!attribute [rw] rule_options
|
54655
|
+
# The rule options.
|
54656
|
+
# @return [Array<Types::RuleOption>]
|
54657
|
+
#
|
54658
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RuleGroupRuleOptionsPair AWS API Documentation
|
54659
|
+
#
|
54660
|
+
class RuleGroupRuleOptionsPair < Struct.new(
|
54661
|
+
:rule_group_arn,
|
54662
|
+
:rule_options)
|
54663
|
+
SENSITIVE = []
|
54664
|
+
include Aws::Structure
|
54665
|
+
end
|
54666
|
+
|
54667
|
+
# Describes the type of a stateful rule group.
|
54668
|
+
#
|
54669
|
+
# @!attribute [rw] rule_group_arn
|
54670
|
+
# The ARN of the rule group.
|
54671
|
+
# @return [String]
|
54672
|
+
#
|
54673
|
+
# @!attribute [rw] rule_group_type
|
54674
|
+
# The rule group type. The possible values are `Domain List` and
|
54675
|
+
# `Suricata`.
|
54676
|
+
# @return [String]
|
54677
|
+
#
|
54678
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RuleGroupTypePair AWS API Documentation
|
54679
|
+
#
|
54680
|
+
class RuleGroupTypePair < Struct.new(
|
54681
|
+
:rule_group_arn,
|
54682
|
+
:rule_group_type)
|
54683
|
+
SENSITIVE = []
|
54684
|
+
include Aws::Structure
|
54685
|
+
end
|
54686
|
+
|
54687
|
+
# Describes additional settings for a stateful rule.
|
54688
|
+
#
|
54689
|
+
# @!attribute [rw] keyword
|
54690
|
+
# The Suricata keyword.
|
54691
|
+
# @return [String]
|
54692
|
+
#
|
54693
|
+
# @!attribute [rw] settings
|
54694
|
+
# The settings for the keyword.
|
54695
|
+
# @return [Array<String>]
|
54696
|
+
#
|
54697
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RuleOption AWS API Documentation
|
54698
|
+
#
|
54699
|
+
class RuleOption < Struct.new(
|
54700
|
+
:keyword,
|
54701
|
+
:settings)
|
54702
|
+
SENSITIVE = []
|
54703
|
+
include Aws::Structure
|
54704
|
+
end
|
54705
|
+
|
54331
54706
|
# Describes the monitoring of an instance.
|
54332
54707
|
#
|
54333
54708
|
# @!attribute [rw] enabled
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
@@ -430,7 +430,7 @@ module Aws::EC2
|
|
430
430
|
# })
|
431
431
|
# @param [Hash] options ({})
|
432
432
|
# @option options [required, String] :description
|
433
|
-
# A description for the security group.
|
433
|
+
# A description for the security group.
|
434
434
|
#
|
435
435
|
# Constraints: Up to 255 characters in length
|
436
436
|
#
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.
|
4
|
+
version: 1.371.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: 2023-03-
|
11
|
+
date: 2023-03-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|