aws-sdk-ec2 1.238.0 → 1.239.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.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +113 -448
- data/lib/aws-sdk-ec2/client_api.rb +4 -128
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +19 -19
- data/lib/aws-sdk-ec2/security_group.rb +3 -51
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +86 -672
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +7 -7
- metadata +2 -2
@@ -223,21 +223,18 @@ module Aws::EC2
|
|
223
223
|
# {
|
224
224
|
# cidr_ip: "String",
|
225
225
|
# description: "String",
|
226
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
227
226
|
# },
|
228
227
|
# ],
|
229
228
|
# ipv_6_ranges: [
|
230
229
|
# {
|
231
230
|
# cidr_ipv_6: "String",
|
232
231
|
# description: "String",
|
233
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
234
232
|
# },
|
235
233
|
# ],
|
236
234
|
# prefix_list_ids: [
|
237
235
|
# {
|
238
236
|
# description: "String",
|
239
237
|
# prefix_list_id: "String",
|
240
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
241
238
|
# },
|
242
239
|
# ],
|
243
240
|
# to_port: 1,
|
@@ -250,18 +247,6 @@ module Aws::EC2
|
|
250
247
|
# user_id: "String",
|
251
248
|
# vpc_id: "String",
|
252
249
|
# vpc_peering_connection_id: "String",
|
253
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
254
|
-
# },
|
255
|
-
# ],
|
256
|
-
# },
|
257
|
-
# ],
|
258
|
-
# tag_specifications: [
|
259
|
-
# {
|
260
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
261
|
-
# tags: [
|
262
|
-
# {
|
263
|
-
# key: "String",
|
264
|
-
# value: "String",
|
265
250
|
# },
|
266
251
|
# ],
|
267
252
|
# },
|
@@ -282,8 +267,6 @@ module Aws::EC2
|
|
282
267
|
# @option options [Array<Types::IpPermission>] :ip_permissions
|
283
268
|
# The sets of IP permissions. You can't specify a destination security
|
284
269
|
# group and a CIDR IP address range in the same set of permissions.
|
285
|
-
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
286
|
-
# The tags applied to the security group rule.
|
287
270
|
# @option options [String] :cidr_ip
|
288
271
|
# Not supported. Use a set of IP permissions to specify the CIDR.
|
289
272
|
# @option options [Integer] :from_port
|
@@ -299,7 +282,7 @@ module Aws::EC2
|
|
299
282
|
# @option options [String] :source_security_group_owner_id
|
300
283
|
# Not supported. Use a set of IP permissions to specify a destination
|
301
284
|
# security group.
|
302
|
-
# @return [
|
285
|
+
# @return [EmptyStructure]
|
303
286
|
def authorize_egress(options = {})
|
304
287
|
options = options.merge(group_id: @id)
|
305
288
|
resp = @client.authorize_security_group_egress(options)
|
@@ -320,21 +303,18 @@ module Aws::EC2
|
|
320
303
|
# {
|
321
304
|
# cidr_ip: "String",
|
322
305
|
# description: "String",
|
323
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
324
306
|
# },
|
325
307
|
# ],
|
326
308
|
# ipv_6_ranges: [
|
327
309
|
# {
|
328
310
|
# cidr_ipv_6: "String",
|
329
311
|
# description: "String",
|
330
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
331
312
|
# },
|
332
313
|
# ],
|
333
314
|
# prefix_list_ids: [
|
334
315
|
# {
|
335
316
|
# description: "String",
|
336
317
|
# prefix_list_id: "String",
|
337
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
338
318
|
# },
|
339
319
|
# ],
|
340
320
|
# to_port: 1,
|
@@ -347,7 +327,6 @@ module Aws::EC2
|
|
347
327
|
# user_id: "String",
|
348
328
|
# vpc_id: "String",
|
349
329
|
# vpc_peering_connection_id: "String",
|
350
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
351
330
|
# },
|
352
331
|
# ],
|
353
332
|
# },
|
@@ -357,17 +336,6 @@ module Aws::EC2
|
|
357
336
|
# source_security_group_owner_id: "String",
|
358
337
|
# to_port: 1,
|
359
338
|
# dry_run: false,
|
360
|
-
# tag_specifications: [
|
361
|
-
# {
|
362
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
363
|
-
# tags: [
|
364
|
-
# {
|
365
|
-
# key: "String",
|
366
|
-
# value: "String",
|
367
|
-
# },
|
368
|
-
# ],
|
369
|
-
# },
|
370
|
-
# ],
|
371
339
|
# })
|
372
340
|
# @param [Hash] options ({})
|
373
341
|
# @option options [String] :cidr_ip
|
@@ -396,7 +364,7 @@ module Aws::EC2
|
|
396
364
|
#
|
397
365
|
# \[VPC only\] Use `-1` to specify all protocols. If you specify `-1` or
|
398
366
|
# a protocol other than `tcp`, `udp`, or `icmp`, traffic on all ports is
|
399
|
-
# allowed, regardless of any ports
|
367
|
+
# allowed, regardless of any ports you specify.
|
400
368
|
#
|
401
369
|
# Alternatively, use a set of IP permissions to specify multiple rules
|
402
370
|
# and a description for the rule.
|
@@ -432,9 +400,7 @@ module Aws::EC2
|
|
432
400
|
# without actually making the request, and provides an error response.
|
433
401
|
# If you have the required permissions, the error response is
|
434
402
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
435
|
-
# @
|
436
|
-
# \[VPC Only\] The tags applied to the security group rule.
|
437
|
-
# @return [Types::AuthorizeSecurityGroupIngressResult]
|
403
|
+
# @return [EmptyStructure]
|
438
404
|
def authorize_ingress(options = {})
|
439
405
|
options = options.merge(group_id: @id)
|
440
406
|
resp = @client.authorize_security_group_ingress(options)
|
@@ -555,21 +521,18 @@ module Aws::EC2
|
|
555
521
|
# {
|
556
522
|
# cidr_ip: "String",
|
557
523
|
# description: "String",
|
558
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
559
524
|
# },
|
560
525
|
# ],
|
561
526
|
# ipv_6_ranges: [
|
562
527
|
# {
|
563
528
|
# cidr_ipv_6: "String",
|
564
529
|
# description: "String",
|
565
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
566
530
|
# },
|
567
531
|
# ],
|
568
532
|
# prefix_list_ids: [
|
569
533
|
# {
|
570
534
|
# description: "String",
|
571
535
|
# prefix_list_id: "String",
|
572
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
573
536
|
# },
|
574
537
|
# ],
|
575
538
|
# to_port: 1,
|
@@ -582,12 +545,10 @@ module Aws::EC2
|
|
582
545
|
# user_id: "String",
|
583
546
|
# vpc_id: "String",
|
584
547
|
# vpc_peering_connection_id: "String",
|
585
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
586
548
|
# },
|
587
549
|
# ],
|
588
550
|
# },
|
589
551
|
# ],
|
590
|
-
# security_group_rule_ids: ["String"],
|
591
552
|
# cidr_ip: "String",
|
592
553
|
# from_port: 1,
|
593
554
|
# ip_protocol: "String",
|
@@ -604,8 +565,6 @@ module Aws::EC2
|
|
604
565
|
# @option options [Array<Types::IpPermission>] :ip_permissions
|
605
566
|
# The sets of IP permissions. You can't specify a destination security
|
606
567
|
# group and a CIDR IP address range in the same set of permissions.
|
607
|
-
# @option options [Array<String>] :security_group_rule_ids
|
608
|
-
# The IDs of the security group rules.
|
609
568
|
# @option options [String] :cidr_ip
|
610
569
|
# Not supported. Use a set of IP permissions to specify the CIDR.
|
611
570
|
# @option options [Integer] :from_port
|
@@ -642,21 +601,18 @@ module Aws::EC2
|
|
642
601
|
# {
|
643
602
|
# cidr_ip: "String",
|
644
603
|
# description: "String",
|
645
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
646
604
|
# },
|
647
605
|
# ],
|
648
606
|
# ipv_6_ranges: [
|
649
607
|
# {
|
650
608
|
# cidr_ipv_6: "String",
|
651
609
|
# description: "String",
|
652
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
653
610
|
# },
|
654
611
|
# ],
|
655
612
|
# prefix_list_ids: [
|
656
613
|
# {
|
657
614
|
# description: "String",
|
658
615
|
# prefix_list_id: "String",
|
659
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
660
616
|
# },
|
661
617
|
# ],
|
662
618
|
# to_port: 1,
|
@@ -669,7 +625,6 @@ module Aws::EC2
|
|
669
625
|
# user_id: "String",
|
670
626
|
# vpc_id: "String",
|
671
627
|
# vpc_peering_connection_id: "String",
|
672
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
673
628
|
# },
|
674
629
|
# ],
|
675
630
|
# },
|
@@ -679,7 +634,6 @@ module Aws::EC2
|
|
679
634
|
# source_security_group_owner_id: "String",
|
680
635
|
# to_port: 1,
|
681
636
|
# dry_run: false,
|
682
|
-
# security_group_rule_ids: ["String"],
|
683
637
|
# })
|
684
638
|
# @param [Hash] options ({})
|
685
639
|
# @option options [String] :cidr_ip
|
@@ -726,8 +680,6 @@ module Aws::EC2
|
|
726
680
|
# without actually making the request, and provides an error response.
|
727
681
|
# If you have the required permissions, the error response is
|
728
682
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
729
|
-
# @option options [Array<String>] :security_group_rule_ids
|
730
|
-
# The IDs of the security group rules.
|
731
683
|
# @return [Types::RevokeSecurityGroupIngressResult]
|
732
684
|
def revoke_ingress(options = {})
|
733
685
|
options = options.merge(group_id: @id)
|
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
@@ -305,7 +305,7 @@ module Aws::EC2
|
|
305
305
|
# source_region: "String", # required
|
306
306
|
# tag_specifications: [
|
307
307
|
# {
|
308
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
308
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
309
309
|
# tags: [
|
310
310
|
# {
|
311
311
|
# key: "String",
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
@@ -374,7 +374,7 @@ module Aws::EC2
|
|
374
374
|
# ],
|
375
375
|
# tag_specifications: [
|
376
376
|
# {
|
377
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
377
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
378
378
|
# tags: [
|
379
379
|
# {
|
380
380
|
# key: "String",
|
@@ -757,7 +757,7 @@ module Aws::EC2
|
|
757
757
|
# interface_type: "efa", # accepts efa
|
758
758
|
# tag_specifications: [
|
759
759
|
# {
|
760
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
760
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
761
761
|
# tags: [
|
762
762
|
# {
|
763
763
|
# key: "String",
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -550,7 +550,7 @@ module Aws::EC2
|
|
550
550
|
# dry_run: false,
|
551
551
|
# tag_specifications: [
|
552
552
|
# {
|
553
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
553
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
554
554
|
# tags: [
|
555
555
|
# {
|
556
556
|
# key: "String",
|
@@ -698,7 +698,7 @@ module Aws::EC2
|
|
698
698
|
# quantity: 1, # required
|
699
699
|
# tag_specifications: [
|
700
700
|
# {
|
701
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
701
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
702
702
|
# tags: [
|
703
703
|
# {
|
704
704
|
# key: "String",
|
@@ -2417,21 +2417,18 @@ module Aws::EC2
|
|
2417
2417
|
# {
|
2418
2418
|
# cidr_ip: "String",
|
2419
2419
|
# description: "String",
|
2420
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2421
2420
|
# },
|
2422
2421
|
# ],
|
2423
2422
|
# ipv_6_ranges: [
|
2424
2423
|
# {
|
2425
2424
|
# cidr_ipv_6: "String",
|
2426
2425
|
# description: "String",
|
2427
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2428
2426
|
# },
|
2429
2427
|
# ],
|
2430
2428
|
# prefix_list_ids: [
|
2431
2429
|
# {
|
2432
2430
|
# description: "String",
|
2433
2431
|
# prefix_list_id: "String",
|
2434
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2435
2432
|
# },
|
2436
2433
|
# ],
|
2437
2434
|
# to_port: 1,
|
@@ -2444,18 +2441,6 @@ module Aws::EC2
|
|
2444
2441
|
# user_id: "String",
|
2445
2442
|
# vpc_id: "String",
|
2446
2443
|
# vpc_peering_connection_id: "String",
|
2447
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2448
|
-
# },
|
2449
|
-
# ],
|
2450
|
-
# },
|
2451
|
-
# ],
|
2452
|
-
# tag_specifications: [
|
2453
|
-
# {
|
2454
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
2455
|
-
# tags: [
|
2456
|
-
# {
|
2457
|
-
# key: "String",
|
2458
|
-
# value: "String",
|
2459
2444
|
# },
|
2460
2445
|
# ],
|
2461
2446
|
# },
|
@@ -2485,10 +2470,6 @@ module Aws::EC2
|
|
2485
2470
|
# permissions.
|
2486
2471
|
# @return [Array<Types::IpPermission>]
|
2487
2472
|
#
|
2488
|
-
# @!attribute [rw] tag_specifications
|
2489
|
-
# The tags applied to the security group rule.
|
2490
|
-
# @return [Array<Types::TagSpecification>]
|
2491
|
-
#
|
2492
2473
|
# @!attribute [rw] cidr_ip
|
2493
2474
|
# Not supported. Use a set of IP permissions to specify the CIDR.
|
2494
2475
|
# @return [String]
|
@@ -2522,7 +2503,6 @@ module Aws::EC2
|
|
2522
2503
|
:dry_run,
|
2523
2504
|
:group_id,
|
2524
2505
|
:ip_permissions,
|
2525
|
-
:tag_specifications,
|
2526
2506
|
:cidr_ip,
|
2527
2507
|
:from_port,
|
2528
2508
|
:ip_protocol,
|
@@ -2533,24 +2513,6 @@ module Aws::EC2
|
|
2533
2513
|
include Aws::Structure
|
2534
2514
|
end
|
2535
2515
|
|
2536
|
-
# @!attribute [rw] return
|
2537
|
-
# Returns `true` if the request succeeds; otherwise, returns an error.
|
2538
|
-
# @return [Boolean]
|
2539
|
-
#
|
2540
|
-
# @!attribute [rw] security_group_rules
|
2541
|
-
# Information about the outbound (egress) security group rules that
|
2542
|
-
# were added.
|
2543
|
-
# @return [Array<Types::SecurityGroupRule>]
|
2544
|
-
#
|
2545
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupEgressResult AWS API Documentation
|
2546
|
-
#
|
2547
|
-
class AuthorizeSecurityGroupEgressResult < Struct.new(
|
2548
|
-
:return,
|
2549
|
-
:security_group_rules)
|
2550
|
-
SENSITIVE = []
|
2551
|
-
include Aws::Structure
|
2552
|
-
end
|
2553
|
-
|
2554
2516
|
# @note When making an API call, you may pass AuthorizeSecurityGroupIngressRequest
|
2555
2517
|
# data as a hash:
|
2556
2518
|
#
|
@@ -2567,21 +2529,18 @@ module Aws::EC2
|
|
2567
2529
|
# {
|
2568
2530
|
# cidr_ip: "String",
|
2569
2531
|
# description: "String",
|
2570
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2571
2532
|
# },
|
2572
2533
|
# ],
|
2573
2534
|
# ipv_6_ranges: [
|
2574
2535
|
# {
|
2575
2536
|
# cidr_ipv_6: "String",
|
2576
2537
|
# description: "String",
|
2577
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2578
2538
|
# },
|
2579
2539
|
# ],
|
2580
2540
|
# prefix_list_ids: [
|
2581
2541
|
# {
|
2582
2542
|
# description: "String",
|
2583
2543
|
# prefix_list_id: "String",
|
2584
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2585
2544
|
# },
|
2586
2545
|
# ],
|
2587
2546
|
# to_port: 1,
|
@@ -2594,7 +2553,6 @@ module Aws::EC2
|
|
2594
2553
|
# user_id: "String",
|
2595
2554
|
# vpc_id: "String",
|
2596
2555
|
# vpc_peering_connection_id: "String",
|
2597
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
2598
2556
|
# },
|
2599
2557
|
# ],
|
2600
2558
|
# },
|
@@ -2604,17 +2562,6 @@ module Aws::EC2
|
|
2604
2562
|
# source_security_group_owner_id: "String",
|
2605
2563
|
# to_port: 1,
|
2606
2564
|
# dry_run: false,
|
2607
|
-
# tag_specifications: [
|
2608
|
-
# {
|
2609
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, security-group-rule, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
2610
|
-
# tags: [
|
2611
|
-
# {
|
2612
|
-
# key: "String",
|
2613
|
-
# value: "String",
|
2614
|
-
# },
|
2615
|
-
# ],
|
2616
|
-
# },
|
2617
|
-
# ],
|
2618
2565
|
# }
|
2619
2566
|
#
|
2620
2567
|
# @!attribute [rw] cidr_ip
|
@@ -2657,7 +2604,7 @@ module Aws::EC2
|
|
2657
2604
|
#
|
2658
2605
|
# \[VPC only\] Use `-1` to specify all protocols. If you specify `-1`
|
2659
2606
|
# or a protocol other than `tcp`, `udp`, or `icmp`, traffic on all
|
2660
|
-
# ports is allowed, regardless of any ports
|
2607
|
+
# ports is allowed, regardless of any ports you specify.
|
2661
2608
|
#
|
2662
2609
|
# Alternatively, use a set of IP permissions to specify multiple rules
|
2663
2610
|
# and a description for the rule.
|
@@ -2704,10 +2651,6 @@ module Aws::EC2
|
|
2704
2651
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
2705
2652
|
# @return [Boolean]
|
2706
2653
|
#
|
2707
|
-
# @!attribute [rw] tag_specifications
|
2708
|
-
# \[VPC Only\] The tags applied to the security group rule.
|
2709
|
-
# @return [Array<Types::TagSpecification>]
|
2710
|
-
#
|
2711
2654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressRequest AWS API Documentation
|
2712
2655
|
#
|
2713
2656
|
class AuthorizeSecurityGroupIngressRequest < Struct.new(
|
@@ -2720,26 +2663,7 @@ module Aws::EC2
|
|
2720
2663
|
:source_security_group_name,
|
2721
2664
|
:source_security_group_owner_id,
|
2722
2665
|
:to_port,
|
2723
|
-
:dry_run
|
2724
|
-
:tag_specifications)
|
2725
|
-
SENSITIVE = []
|
2726
|
-
include Aws::Structure
|
2727
|
-
end
|
2728
|
-
|
2729
|
-
# @!attribute [rw] return
|
2730
|
-
# Returns `true` if the request succeeds; otherwise, returns an error.
|
2731
|
-
# @return [Boolean]
|
2732
|
-
#
|
2733
|
-
# @!attribute [rw] security_group_rules
|
2734
|
-
# Information about the inbound (ingress) security group rules that
|
2735
|
-
# were added.
|
2736
|
-
# @return [Array<Types::SecurityGroupRule>]
|
2737
|
-
#
|
2738
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AuthorizeSecurityGroupIngressResult AWS API Documentation
|
2739
|
-
#
|
2740
|
-
class AuthorizeSecurityGroupIngressResult < Struct.new(
|
2741
|
-
:return,
|
2742
|
-
:security_group_rules)
|
2666
|
+
:dry_run)
|
2743
2667
|
SENSITIVE = []
|
2744
2668
|
include Aws::Structure
|
2745
2669
|
end
|
@@ -5232,7 +5156,7 @@ module Aws::EC2
|
|
5232
5156
|
# source_snapshot_id: "String", # required
|
5233
5157
|
# tag_specifications: [
|
5234
5158
|
# {
|
5235
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
5159
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5236
5160
|
# tags: [
|
5237
5161
|
# {
|
5238
5162
|
# key: "String",
|
@@ -5457,7 +5381,7 @@ module Aws::EC2
|
|
5457
5381
|
# instance_match_criteria: "open", # accepts open, targeted
|
5458
5382
|
# tag_specifications: [
|
5459
5383
|
# {
|
5460
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
5384
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5461
5385
|
# tags: [
|
5462
5386
|
# {
|
5463
5387
|
# key: "String",
|
@@ -5636,7 +5560,7 @@ module Aws::EC2
|
|
5636
5560
|
# vpc_id: "VpcId", # required
|
5637
5561
|
# tag_specifications: [
|
5638
5562
|
# {
|
5639
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
5563
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5640
5564
|
# tags: [
|
5641
5565
|
# {
|
5642
5566
|
# key: "String",
|
@@ -5735,7 +5659,7 @@ module Aws::EC2
|
|
5735
5659
|
# client_token: "String",
|
5736
5660
|
# tag_specifications: [
|
5737
5661
|
# {
|
5738
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
5662
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
5739
5663
|
# tags: [
|
5740
5664
|
# {
|
5741
5665
|
# key: "String",
|
@@ -6028,7 +5952,7 @@ module Aws::EC2
|
|
6028
5952
|
# type: "ipsec.1", # required, accepts ipsec.1
|
6029
5953
|
# tag_specifications: [
|
6030
5954
|
# {
|
6031
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
5955
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6032
5956
|
# tags: [
|
6033
5957
|
# {
|
6034
5958
|
# key: "String",
|
@@ -6192,7 +6116,7 @@ module Aws::EC2
|
|
6192
6116
|
# ],
|
6193
6117
|
# tag_specifications: [
|
6194
6118
|
# {
|
6195
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6119
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6196
6120
|
# tags: [
|
6197
6121
|
# {
|
6198
6122
|
# key: "String",
|
@@ -6250,7 +6174,7 @@ module Aws::EC2
|
|
6250
6174
|
# vpc_id: "VpcId", # required
|
6251
6175
|
# tag_specifications: [
|
6252
6176
|
# {
|
6253
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6177
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6254
6178
|
# tags: [
|
6255
6179
|
# {
|
6256
6180
|
# key: "String",
|
@@ -6471,7 +6395,7 @@ module Aws::EC2
|
|
6471
6395
|
# replace_unhealthy_instances: false,
|
6472
6396
|
# tag_specifications: [
|
6473
6397
|
# {
|
6474
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6398
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6475
6399
|
# tags: [
|
6476
6400
|
# {
|
6477
6401
|
# key: "String",
|
@@ -6646,7 +6570,7 @@ module Aws::EC2
|
|
6646
6570
|
# log_format: "String",
|
6647
6571
|
# tag_specifications: [
|
6648
6572
|
# {
|
6649
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6573
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6650
6574
|
# tags: [
|
6651
6575
|
# {
|
6652
6576
|
# key: "String",
|
@@ -6840,7 +6764,7 @@ module Aws::EC2
|
|
6840
6764
|
# client_token: "String",
|
6841
6765
|
# tag_specifications: [
|
6842
6766
|
# {
|
6843
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6767
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6844
6768
|
# tags: [
|
6845
6769
|
# {
|
6846
6770
|
# key: "String",
|
@@ -6949,7 +6873,7 @@ module Aws::EC2
|
|
6949
6873
|
# no_reboot: false,
|
6950
6874
|
# tag_specifications: [
|
6951
6875
|
# {
|
6952
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6876
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
6953
6877
|
# tags: [
|
6954
6878
|
# {
|
6955
6879
|
# key: "String",
|
@@ -7059,7 +6983,7 @@ module Aws::EC2
|
|
7059
6983
|
# target_environment: "citrix", # required, accepts citrix, vmware, microsoft
|
7060
6984
|
# tag_specifications: [
|
7061
6985
|
# {
|
7062
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
6986
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7063
6987
|
# tags: [
|
7064
6988
|
# {
|
7065
6989
|
# key: "String",
|
@@ -7121,7 +7045,7 @@ module Aws::EC2
|
|
7121
7045
|
# {
|
7122
7046
|
# tag_specifications: [
|
7123
7047
|
# {
|
7124
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7048
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7125
7049
|
# tags: [
|
7126
7050
|
# {
|
7127
7051
|
# key: "String",
|
@@ -7173,7 +7097,7 @@ module Aws::EC2
|
|
7173
7097
|
# dry_run: false,
|
7174
7098
|
# tag_specifications: [
|
7175
7099
|
# {
|
7176
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7100
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7177
7101
|
# tags: [
|
7178
7102
|
# {
|
7179
7103
|
# key: "String",
|
@@ -7293,7 +7217,7 @@ module Aws::EC2
|
|
7293
7217
|
# user_data: "String",
|
7294
7218
|
# tag_specifications: [
|
7295
7219
|
# {
|
7296
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7220
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7297
7221
|
# tags: [
|
7298
7222
|
# {
|
7299
7223
|
# key: "String",
|
@@ -7358,7 +7282,7 @@ module Aws::EC2
|
|
7358
7282
|
# },
|
7359
7283
|
# tag_specifications: [
|
7360
7284
|
# {
|
7361
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7285
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7362
7286
|
# tags: [
|
7363
7287
|
# {
|
7364
7288
|
# key: "String",
|
@@ -7520,7 +7444,7 @@ module Aws::EC2
|
|
7520
7444
|
# user_data: "String",
|
7521
7445
|
# tag_specifications: [
|
7522
7446
|
# {
|
7523
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7447
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7524
7448
|
# tags: [
|
7525
7449
|
# {
|
7526
7450
|
# key: "String",
|
@@ -7725,7 +7649,7 @@ module Aws::EC2
|
|
7725
7649
|
# vpc_id: "VpcId", # required
|
7726
7650
|
# tag_specifications: [
|
7727
7651
|
# {
|
7728
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7652
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7729
7653
|
# tags: [
|
7730
7654
|
# {
|
7731
7655
|
# key: "String",
|
@@ -7794,7 +7718,7 @@ module Aws::EC2
|
|
7794
7718
|
# max_entries: 1, # required
|
7795
7719
|
# tag_specifications: [
|
7796
7720
|
# {
|
7797
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7721
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7798
7722
|
# tags: [
|
7799
7723
|
# {
|
7800
7724
|
# key: "String",
|
@@ -7889,7 +7813,7 @@ module Aws::EC2
|
|
7889
7813
|
# subnet_id: "SubnetId", # required
|
7890
7814
|
# tag_specifications: [
|
7891
7815
|
# {
|
7892
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
7816
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
7893
7817
|
# tags: [
|
7894
7818
|
# {
|
7895
7819
|
# key: "String",
|
@@ -8078,7 +8002,7 @@ module Aws::EC2
|
|
8078
8002
|
# vpc_id: "VpcId", # required
|
8079
8003
|
# tag_specifications: [
|
8080
8004
|
# {
|
8081
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8005
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8082
8006
|
# tags: [
|
8083
8007
|
# {
|
8084
8008
|
# key: "String",
|
@@ -8138,7 +8062,7 @@ module Aws::EC2
|
|
8138
8062
|
# destination_port: 1,
|
8139
8063
|
# tag_specifications: [
|
8140
8064
|
# {
|
8141
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8065
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8142
8066
|
# tags: [
|
8143
8067
|
# {
|
8144
8068
|
# key: "String",
|
@@ -8317,7 +8241,7 @@ module Aws::EC2
|
|
8317
8241
|
# subnet_id: "SubnetId", # required
|
8318
8242
|
# tag_specifications: [
|
8319
8243
|
# {
|
8320
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8244
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8321
8245
|
# tags: [
|
8322
8246
|
# {
|
8323
8247
|
# key: "String",
|
@@ -8447,7 +8371,7 @@ module Aws::EC2
|
|
8447
8371
|
# partition_count: 1,
|
8448
8372
|
# tag_specifications: [
|
8449
8373
|
# {
|
8450
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8374
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8451
8375
|
# tags: [
|
8452
8376
|
# {
|
8453
8377
|
# key: "String",
|
@@ -8519,7 +8443,7 @@ module Aws::EC2
|
|
8519
8443
|
# dry_run: false,
|
8520
8444
|
# tag_specifications: [
|
8521
8445
|
# {
|
8522
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8446
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8523
8447
|
# tags: [
|
8524
8448
|
# {
|
8525
8449
|
# key: "String",
|
@@ -8667,7 +8591,7 @@ module Aws::EC2
|
|
8667
8591
|
# name: "String",
|
8668
8592
|
# tag_specifications: [
|
8669
8593
|
# {
|
8670
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8594
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8671
8595
|
# tags: [
|
8672
8596
|
# {
|
8673
8597
|
# key: "String",
|
@@ -8873,7 +8797,7 @@ module Aws::EC2
|
|
8873
8797
|
# vpc_id: "VpcId", # required
|
8874
8798
|
# tag_specifications: [
|
8875
8799
|
# {
|
8876
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8800
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8877
8801
|
# tags: [
|
8878
8802
|
# {
|
8879
8803
|
# key: "String",
|
@@ -8930,7 +8854,7 @@ module Aws::EC2
|
|
8930
8854
|
# vpc_id: "VpcId",
|
8931
8855
|
# tag_specifications: [
|
8932
8856
|
# {
|
8933
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8857
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
8934
8858
|
# tags: [
|
8935
8859
|
# {
|
8936
8860
|
# key: "String",
|
@@ -9018,7 +8942,7 @@ module Aws::EC2
|
|
9018
8942
|
# volume_id: "VolumeId", # required
|
9019
8943
|
# tag_specifications: [
|
9020
8944
|
# {
|
9021
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
8945
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9022
8946
|
# tags: [
|
9023
8947
|
# {
|
9024
8948
|
# key: "String",
|
@@ -9097,7 +9021,7 @@ module Aws::EC2
|
|
9097
9021
|
# outpost_arn: "String",
|
9098
9022
|
# tag_specifications: [
|
9099
9023
|
# {
|
9100
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9024
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9101
9025
|
# tags: [
|
9102
9026
|
# {
|
9103
9027
|
# key: "String",
|
@@ -9309,7 +9233,7 @@ module Aws::EC2
|
|
9309
9233
|
# {
|
9310
9234
|
# tag_specifications: [
|
9311
9235
|
# {
|
9312
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9236
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9313
9237
|
# tags: [
|
9314
9238
|
# {
|
9315
9239
|
# key: "String",
|
@@ -9462,7 +9386,7 @@ module Aws::EC2
|
|
9462
9386
|
# description: "String",
|
9463
9387
|
# tag_specifications: [
|
9464
9388
|
# {
|
9465
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9389
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9466
9390
|
# tags: [
|
9467
9391
|
# {
|
9468
9392
|
# key: "String",
|
@@ -9685,7 +9609,7 @@ module Aws::EC2
|
|
9685
9609
|
# description: "String",
|
9686
9610
|
# tag_specifications: [
|
9687
9611
|
# {
|
9688
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9612
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9689
9613
|
# tags: [
|
9690
9614
|
# {
|
9691
9615
|
# key: "String",
|
@@ -9818,7 +9742,7 @@ module Aws::EC2
|
|
9818
9742
|
# description: "String",
|
9819
9743
|
# tag_specifications: [
|
9820
9744
|
# {
|
9821
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9745
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9822
9746
|
# tags: [
|
9823
9747
|
# {
|
9824
9748
|
# key: "String",
|
@@ -9917,7 +9841,7 @@ module Aws::EC2
|
|
9917
9841
|
# inside_cidr_blocks: ["String"], # required
|
9918
9842
|
# tag_specifications: [
|
9919
9843
|
# {
|
9920
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9844
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
9921
9845
|
# tags: [
|
9922
9846
|
# {
|
9923
9847
|
# key: "String",
|
@@ -10004,7 +9928,7 @@ module Aws::EC2
|
|
10004
9928
|
# },
|
10005
9929
|
# tag_specifications: [
|
10006
9930
|
# {
|
10007
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
9931
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10008
9932
|
# tags: [
|
10009
9933
|
# {
|
10010
9934
|
# key: "String",
|
@@ -10092,7 +10016,7 @@ module Aws::EC2
|
|
10092
10016
|
# },
|
10093
10017
|
# tag_specifications: [
|
10094
10018
|
# {
|
10095
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10019
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10096
10020
|
# tags: [
|
10097
10021
|
# {
|
10098
10022
|
# key: "String",
|
@@ -10193,7 +10117,7 @@ module Aws::EC2
|
|
10193
10117
|
# peer_region: "String", # required
|
10194
10118
|
# tag_specifications: [
|
10195
10119
|
# {
|
10196
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10120
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10197
10121
|
# tags: [
|
10198
10122
|
# {
|
10199
10123
|
# key: "String",
|
@@ -10333,7 +10257,7 @@ module Aws::EC2
|
|
10333
10257
|
# },
|
10334
10258
|
# tag_specifications: [
|
10335
10259
|
# {
|
10336
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10260
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10337
10261
|
# tags: [
|
10338
10262
|
# {
|
10339
10263
|
# key: "String",
|
@@ -10453,7 +10377,7 @@ module Aws::EC2
|
|
10453
10377
|
# transit_gateway_id: "TransitGatewayId", # required
|
10454
10378
|
# tag_specifications: [
|
10455
10379
|
# {
|
10456
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10380
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10457
10381
|
# tags: [
|
10458
10382
|
# {
|
10459
10383
|
# key: "String",
|
@@ -10516,7 +10440,7 @@ module Aws::EC2
|
|
10516
10440
|
# },
|
10517
10441
|
# tag_specifications: [
|
10518
10442
|
# {
|
10519
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10443
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10520
10444
|
# tags: [
|
10521
10445
|
# {
|
10522
10446
|
# key: "String",
|
@@ -10700,7 +10624,7 @@ module Aws::EC2
|
|
10700
10624
|
# dry_run: false,
|
10701
10625
|
# tag_specifications: [
|
10702
10626
|
# {
|
10703
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10627
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10704
10628
|
# tags: [
|
10705
10629
|
# {
|
10706
10630
|
# key: "String",
|
@@ -10983,7 +10907,7 @@ module Aws::EC2
|
|
10983
10907
|
# private_dns_enabled: false,
|
10984
10908
|
# tag_specifications: [
|
10985
10909
|
# {
|
10986
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
10910
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
10987
10911
|
# tags: [
|
10988
10912
|
# {
|
10989
10913
|
# key: "String",
|
@@ -11120,7 +11044,7 @@ module Aws::EC2
|
|
11120
11044
|
# client_token: "String",
|
11121
11045
|
# tag_specifications: [
|
11122
11046
|
# {
|
11123
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
11047
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
11124
11048
|
# tags: [
|
11125
11049
|
# {
|
11126
11050
|
# key: "String",
|
@@ -11216,7 +11140,7 @@ module Aws::EC2
|
|
11216
11140
|
# peer_region: "String",
|
11217
11141
|
# tag_specifications: [
|
11218
11142
|
# {
|
11219
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
11143
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
11220
11144
|
# tags: [
|
11221
11145
|
# {
|
11222
11146
|
# key: "String",
|
@@ -11299,7 +11223,7 @@ module Aws::EC2
|
|
11299
11223
|
# ipv_6_cidr_block_network_border_group: "String",
|
11300
11224
|
# tag_specifications: [
|
11301
11225
|
# {
|
11302
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
11226
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
11303
11227
|
# tags: [
|
11304
11228
|
# {
|
11305
11229
|
# key: "String",
|
@@ -11468,7 +11392,7 @@ module Aws::EC2
|
|
11468
11392
|
# },
|
11469
11393
|
# tag_specifications: [
|
11470
11394
|
# {
|
11471
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
11395
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
11472
11396
|
# tags: [
|
11473
11397
|
# {
|
11474
11398
|
# key: "String",
|
@@ -11578,7 +11502,7 @@ module Aws::EC2
|
|
11578
11502
|
# type: "ipsec.1", # required, accepts ipsec.1
|
11579
11503
|
# tag_specifications: [
|
11580
11504
|
# {
|
11581
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
11505
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
11582
11506
|
# tags: [
|
11583
11507
|
# {
|
11584
11508
|
# key: "String",
|
@@ -18683,7 +18607,7 @@ module Aws::EC2
|
|
18683
18607
|
# @!attribute [rw] key_names
|
18684
18608
|
# The key pair names.
|
18685
18609
|
#
|
18686
|
-
# Default: Describes all
|
18610
|
+
# Default: Describes all your key pairs.
|
18687
18611
|
# @return [Array<String>]
|
18688
18612
|
#
|
18689
18613
|
# @!attribute [rw] key_pair_ids
|
@@ -21631,88 +21555,6 @@ module Aws::EC2
|
|
21631
21555
|
include Aws::Structure
|
21632
21556
|
end
|
21633
21557
|
|
21634
|
-
# @note When making an API call, you may pass DescribeSecurityGroupRulesRequest
|
21635
|
-
# data as a hash:
|
21636
|
-
#
|
21637
|
-
# {
|
21638
|
-
# filters: [
|
21639
|
-
# {
|
21640
|
-
# name: "String",
|
21641
|
-
# values: ["String"],
|
21642
|
-
# },
|
21643
|
-
# ],
|
21644
|
-
# security_group_rule_ids: ["String"],
|
21645
|
-
# dry_run: false,
|
21646
|
-
# next_token: "String",
|
21647
|
-
# max_results: 1,
|
21648
|
-
# }
|
21649
|
-
#
|
21650
|
-
# @!attribute [rw] filters
|
21651
|
-
# One or more filters.
|
21652
|
-
#
|
21653
|
-
# * `group-id` - The ID of the security group.
|
21654
|
-
#
|
21655
|
-
# * `security-group-rule-id` - The ID of the security group rule.
|
21656
|
-
#
|
21657
|
-
# * `tag`\:<key> - The key/value combination of a tag assigned
|
21658
|
-
# to the resource. Use the tag key in the filter name and the tag
|
21659
|
-
# value as the filter value. For example, to find all resources that
|
21660
|
-
# have a tag with the key `Owner` and the value `TeamA`, specify
|
21661
|
-
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
21662
|
-
# @return [Array<Types::Filter>]
|
21663
|
-
#
|
21664
|
-
# @!attribute [rw] security_group_rule_ids
|
21665
|
-
# The IDs of the security group rules.
|
21666
|
-
# @return [Array<String>]
|
21667
|
-
#
|
21668
|
-
# @!attribute [rw] dry_run
|
21669
|
-
# Checks whether you have the required permissions for the action,
|
21670
|
-
# without actually making the request, and provides an error response.
|
21671
|
-
# If you have the required permissions, the error response is
|
21672
|
-
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
21673
|
-
# @return [Boolean]
|
21674
|
-
#
|
21675
|
-
# @!attribute [rw] next_token
|
21676
|
-
# The token for the next page of results.
|
21677
|
-
# @return [String]
|
21678
|
-
#
|
21679
|
-
# @!attribute [rw] max_results
|
21680
|
-
# The maximum number of results to return in a single call. To
|
21681
|
-
# retrieve the remaining results, make another request with the
|
21682
|
-
# returned `NextToken` value. This value can be between 5 and 1000. If
|
21683
|
-
# this parameter is not specified, then all results are returned.
|
21684
|
-
# @return [Integer]
|
21685
|
-
#
|
21686
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesRequest AWS API Documentation
|
21687
|
-
#
|
21688
|
-
class DescribeSecurityGroupRulesRequest < Struct.new(
|
21689
|
-
:filters,
|
21690
|
-
:security_group_rule_ids,
|
21691
|
-
:dry_run,
|
21692
|
-
:next_token,
|
21693
|
-
:max_results)
|
21694
|
-
SENSITIVE = []
|
21695
|
-
include Aws::Structure
|
21696
|
-
end
|
21697
|
-
|
21698
|
-
# @!attribute [rw] security_group_rules
|
21699
|
-
# Information about security group rules.
|
21700
|
-
# @return [Array<Types::SecurityGroupRule>]
|
21701
|
-
#
|
21702
|
-
# @!attribute [rw] next_token
|
21703
|
-
# The token to use to retrieve the next page of results. This value is
|
21704
|
-
# `null` when there are no more results to return.
|
21705
|
-
# @return [String]
|
21706
|
-
#
|
21707
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeSecurityGroupRulesResult AWS API Documentation
|
21708
|
-
#
|
21709
|
-
class DescribeSecurityGroupRulesResult < Struct.new(
|
21710
|
-
:security_group_rules,
|
21711
|
-
:next_token)
|
21712
|
-
SENSITIVE = []
|
21713
|
-
include Aws::Structure
|
21714
|
-
end
|
21715
|
-
|
21716
21558
|
# @note When making an API call, you may pass DescribeSecurityGroupsRequest
|
21717
21559
|
# data as a hash:
|
21718
21560
|
#
|
@@ -21819,7 +21661,7 @@ module Aws::EC2
|
|
21819
21661
|
# The IDs of the security groups. Required for security groups in a
|
21820
21662
|
# nondefault VPC.
|
21821
21663
|
#
|
21822
|
-
# Default: Describes all
|
21664
|
+
# Default: Describes all your security groups.
|
21823
21665
|
# @return [Array<String>]
|
21824
21666
|
#
|
21825
21667
|
# @!attribute [rw] group_names
|
@@ -21828,7 +21670,7 @@ module Aws::EC2
|
|
21828
21670
|
# security group ID. For security groups in a nondefault VPC, use the
|
21829
21671
|
# `group-name` filter to describe security groups by name.
|
21830
21672
|
#
|
21831
|
-
# Default: Describes all
|
21673
|
+
# Default: Describes all your security groups.
|
21832
21674
|
# @return [Array<String>]
|
21833
21675
|
#
|
21834
21676
|
# @!attribute [rw] dry_run
|
@@ -28287,7 +28129,7 @@ module Aws::EC2
|
|
28287
28129
|
# role_name: "String",
|
28288
28130
|
# tag_specifications: [
|
28289
28131
|
# {
|
28290
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
28132
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
28291
28133
|
# tags: [
|
28292
28134
|
# {
|
28293
28135
|
# key: "String",
|
@@ -32265,7 +32107,7 @@ module Aws::EC2
|
|
32265
32107
|
# ],
|
32266
32108
|
# tag_specifications: [
|
32267
32109
|
# {
|
32268
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
32110
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
32269
32111
|
# tags: [
|
32270
32112
|
# {
|
32271
32113
|
# key: "String",
|
@@ -32871,7 +32713,7 @@ module Aws::EC2
|
|
32871
32713
|
# public_key_material: "data", # required
|
32872
32714
|
# tag_specifications: [
|
32873
32715
|
# {
|
32874
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
32716
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
32875
32717
|
# tags: [
|
32876
32718
|
# {
|
32877
32719
|
# key: "String",
|
@@ -32919,7 +32761,7 @@ module Aws::EC2
|
|
32919
32761
|
# @return [String]
|
32920
32762
|
#
|
32921
32763
|
# @!attribute [rw] key_name
|
32922
|
-
# The key pair name
|
32764
|
+
# The key pair name you provided.
|
32923
32765
|
# @return [String]
|
32924
32766
|
#
|
32925
32767
|
# @!attribute [rw] key_pair_id
|
@@ -32968,7 +32810,7 @@ module Aws::EC2
|
|
32968
32810
|
# role_name: "String",
|
32969
32811
|
# tag_specifications: [
|
32970
32812
|
# {
|
32971
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
32813
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
32972
32814
|
# tags: [
|
32973
32815
|
# {
|
32974
32816
|
# key: "String",
|
@@ -35011,21 +34853,18 @@ module Aws::EC2
|
|
35011
34853
|
# {
|
35012
34854
|
# cidr_ip: "String",
|
35013
34855
|
# description: "String",
|
35014
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
35015
34856
|
# },
|
35016
34857
|
# ],
|
35017
34858
|
# ipv_6_ranges: [
|
35018
34859
|
# {
|
35019
34860
|
# cidr_ipv_6: "String",
|
35020
34861
|
# description: "String",
|
35021
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
35022
34862
|
# },
|
35023
34863
|
# ],
|
35024
34864
|
# prefix_list_ids: [
|
35025
34865
|
# {
|
35026
34866
|
# description: "String",
|
35027
34867
|
# prefix_list_id: "String",
|
35028
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
35029
34868
|
# },
|
35030
34869
|
# ],
|
35031
34870
|
# to_port: 1,
|
@@ -35038,7 +34877,6 @@ module Aws::EC2
|
|
35038
34877
|
# user_id: "String",
|
35039
34878
|
# vpc_id: "String",
|
35040
34879
|
# vpc_peering_connection_id: "String",
|
35041
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
35042
34880
|
# },
|
35043
34881
|
# ],
|
35044
34882
|
# }
|
@@ -35111,7 +34949,6 @@ module Aws::EC2
|
|
35111
34949
|
# {
|
35112
34950
|
# cidr_ip: "String",
|
35113
34951
|
# description: "String",
|
35114
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
35115
34952
|
# }
|
35116
34953
|
#
|
35117
34954
|
# @!attribute [rw] cidr_ip
|
@@ -35128,16 +34965,11 @@ module Aws::EC2
|
|
35128
34965
|
# a-z, A-Z, 0-9, spaces, and .\_-:/()#,@\[\]+=&;\\\{\\}!$*
|
35129
34966
|
# @return [String]
|
35130
34967
|
#
|
35131
|
-
# @!attribute [rw] security_group_rule_id
|
35132
|
-
# The ID of the security group rule.
|
35133
|
-
# @return [String]
|
35134
|
-
#
|
35135
34968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpRange AWS API Documentation
|
35136
34969
|
#
|
35137
34970
|
class IpRange < Struct.new(
|
35138
34971
|
:cidr_ip,
|
35139
|
-
:description
|
35140
|
-
:security_group_rule_id)
|
34972
|
+
:description)
|
35141
34973
|
SENSITIVE = []
|
35142
34974
|
include Aws::Structure
|
35143
34975
|
end
|
@@ -35212,7 +35044,6 @@ module Aws::EC2
|
|
35212
35044
|
# {
|
35213
35045
|
# cidr_ipv_6: "String",
|
35214
35046
|
# description: "String",
|
35215
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
35216
35047
|
# }
|
35217
35048
|
#
|
35218
35049
|
# @!attribute [rw] cidr_ipv_6
|
@@ -35229,16 +35060,11 @@ module Aws::EC2
|
|
35229
35060
|
# a-z, A-Z, 0-9, spaces, and .\_-:/()#,@\[\]+=&;\\\{\\}!$*
|
35230
35061
|
# @return [String]
|
35231
35062
|
#
|
35232
|
-
# @!attribute [rw] security_group_rule_id
|
35233
|
-
# The ID of the security group rule.
|
35234
|
-
# @return [String]
|
35235
|
-
#
|
35236
35063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Ipv6Range AWS API Documentation
|
35237
35064
|
#
|
35238
35065
|
class Ipv6Range < Struct.new(
|
35239
35066
|
:cidr_ipv_6,
|
35240
|
-
:description
|
35241
|
-
:security_group_rule_id)
|
35067
|
+
:description)
|
35242
35068
|
SENSITIVE = []
|
35243
35069
|
include Aws::Structure
|
35244
35070
|
end
|
@@ -36958,7 +36784,7 @@ module Aws::EC2
|
|
36958
36784
|
# data as a hash:
|
36959
36785
|
#
|
36960
36786
|
# {
|
36961
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
36787
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
36962
36788
|
# tags: [
|
36963
36789
|
# {
|
36964
36790
|
# key: "String",
|
@@ -39323,66 +39149,6 @@ module Aws::EC2
|
|
39323
39149
|
include Aws::Structure
|
39324
39150
|
end
|
39325
39151
|
|
39326
|
-
# @note When making an API call, you may pass ModifySecurityGroupRulesRequest
|
39327
|
-
# data as a hash:
|
39328
|
-
#
|
39329
|
-
# {
|
39330
|
-
# group_id: "SecurityGroupId", # required
|
39331
|
-
# security_group_rules: [ # required
|
39332
|
-
# {
|
39333
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
39334
|
-
# security_group_rule: {
|
39335
|
-
# ip_protocol: "String",
|
39336
|
-
# from_port: 1,
|
39337
|
-
# to_port: 1,
|
39338
|
-
# cidr_ipv_4: "String",
|
39339
|
-
# cidr_ipv_6: "String",
|
39340
|
-
# prefix_list_id: "PrefixListResourceId",
|
39341
|
-
# referenced_group_id: "SecurityGroupId",
|
39342
|
-
# description: "String",
|
39343
|
-
# },
|
39344
|
-
# },
|
39345
|
-
# ],
|
39346
|
-
# dry_run: false,
|
39347
|
-
# }
|
39348
|
-
#
|
39349
|
-
# @!attribute [rw] group_id
|
39350
|
-
# The ID of the security group.
|
39351
|
-
# @return [String]
|
39352
|
-
#
|
39353
|
-
# @!attribute [rw] security_group_rules
|
39354
|
-
# Information about the security group properties to update.
|
39355
|
-
# @return [Array<Types::SecurityGroupRuleUpdate>]
|
39356
|
-
#
|
39357
|
-
# @!attribute [rw] dry_run
|
39358
|
-
# Checks whether you have the required permissions for the action,
|
39359
|
-
# without actually making the request, and provides an error response.
|
39360
|
-
# If you have the required permissions, the error response is
|
39361
|
-
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
39362
|
-
# @return [Boolean]
|
39363
|
-
#
|
39364
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesRequest AWS API Documentation
|
39365
|
-
#
|
39366
|
-
class ModifySecurityGroupRulesRequest < Struct.new(
|
39367
|
-
:group_id,
|
39368
|
-
:security_group_rules,
|
39369
|
-
:dry_run)
|
39370
|
-
SENSITIVE = []
|
39371
|
-
include Aws::Structure
|
39372
|
-
end
|
39373
|
-
|
39374
|
-
# @!attribute [rw] return
|
39375
|
-
# Returns `true` if the request succeeds; otherwise, returns an error.
|
39376
|
-
# @return [Boolean]
|
39377
|
-
#
|
39378
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifySecurityGroupRulesResult AWS API Documentation
|
39379
|
-
#
|
39380
|
-
class ModifySecurityGroupRulesResult < Struct.new(
|
39381
|
-
:return)
|
39382
|
-
SENSITIVE = []
|
39383
|
-
include Aws::Structure
|
39384
|
-
end
|
39385
|
-
|
39386
39152
|
# @note When making an API call, you may pass ModifySnapshotAttributeRequest
|
39387
39153
|
# data as a hash:
|
39388
39154
|
#
|
@@ -43135,7 +42901,6 @@ module Aws::EC2
|
|
43135
42901
|
# {
|
43136
42902
|
# description: "String",
|
43137
42903
|
# prefix_list_id: "String",
|
43138
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
43139
42904
|
# }
|
43140
42905
|
#
|
43141
42906
|
# @!attribute [rw] description
|
@@ -43150,16 +42915,11 @@ module Aws::EC2
|
|
43150
42915
|
# The ID of the prefix.
|
43151
42916
|
# @return [String]
|
43152
42917
|
#
|
43153
|
-
# @!attribute [rw] security_group_rule_id
|
43154
|
-
# The ID of the security group rule.
|
43155
|
-
# @return [String]
|
43156
|
-
#
|
43157
42918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrefixListId AWS API Documentation
|
43158
42919
|
#
|
43159
42920
|
class PrefixListId < Struct.new(
|
43160
42921
|
:description,
|
43161
|
-
:prefix_list_id
|
43162
|
-
:security_group_rule_id)
|
42922
|
+
:prefix_list_id)
|
43163
42923
|
SENSITIVE = []
|
43164
42924
|
include Aws::Structure
|
43165
42925
|
end
|
@@ -43429,7 +43189,7 @@ module Aws::EC2
|
|
43429
43189
|
# dry_run: false,
|
43430
43190
|
# pool_tag_specifications: [
|
43431
43191
|
# {
|
43432
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
43192
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
43433
43193
|
# tags: [
|
43434
43194
|
# {
|
43435
43195
|
# key: "String",
|
@@ -43732,7 +43492,7 @@ module Aws::EC2
|
|
43732
43492
|
# offering_id: "OfferingId", # required
|
43733
43493
|
# tag_specifications: [
|
43734
43494
|
# {
|
43735
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
43495
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
43736
43496
|
# tags: [
|
43737
43497
|
# {
|
43738
43498
|
# key: "String",
|
@@ -44041,41 +43801,6 @@ module Aws::EC2
|
|
44041
43801
|
include Aws::Structure
|
44042
43802
|
end
|
44043
43803
|
|
44044
|
-
# Describes the security group that is referenced in the security group
|
44045
|
-
# rule.
|
44046
|
-
#
|
44047
|
-
# @!attribute [rw] group_id
|
44048
|
-
# The ID of the security group.
|
44049
|
-
# @return [String]
|
44050
|
-
#
|
44051
|
-
# @!attribute [rw] peering_status
|
44052
|
-
# The status of a VPC peering connection, if applicable.
|
44053
|
-
# @return [String]
|
44054
|
-
#
|
44055
|
-
# @!attribute [rw] user_id
|
44056
|
-
# The AWS account ID.
|
44057
|
-
# @return [String]
|
44058
|
-
#
|
44059
|
-
# @!attribute [rw] vpc_id
|
44060
|
-
# The ID of the VPC.
|
44061
|
-
# @return [String]
|
44062
|
-
#
|
44063
|
-
# @!attribute [rw] vpc_peering_connection_id
|
44064
|
-
# The ID of the VPC peering connection.
|
44065
|
-
# @return [String]
|
44066
|
-
#
|
44067
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ReferencedSecurityGroup AWS API Documentation
|
44068
|
-
#
|
44069
|
-
class ReferencedSecurityGroup < Struct.new(
|
44070
|
-
:group_id,
|
44071
|
-
:peering_status,
|
44072
|
-
:user_id,
|
44073
|
-
:vpc_id,
|
44074
|
-
:vpc_peering_connection_id)
|
44075
|
-
SENSITIVE = []
|
44076
|
-
include Aws::Structure
|
44077
|
-
end
|
44078
|
-
|
44079
43804
|
# Describes a Region.
|
44080
43805
|
#
|
44081
43806
|
# @!attribute [rw] endpoint
|
@@ -45434,7 +45159,7 @@ module Aws::EC2
|
|
45434
45159
|
# user_data: "String",
|
45435
45160
|
# tag_specifications: [
|
45436
45161
|
# {
|
45437
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
45162
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
45438
45163
|
# tags: [
|
45439
45164
|
# {
|
45440
45165
|
# key: "String",
|
@@ -45848,7 +45573,7 @@ module Aws::EC2
|
|
45848
45573
|
# weighted_capacity: 1.0,
|
45849
45574
|
# tag_specifications: [
|
45850
45575
|
# {
|
45851
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
45576
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
45852
45577
|
# tags: [
|
45853
45578
|
# {
|
45854
45579
|
# key: "String",
|
@@ -45908,7 +45633,7 @@ module Aws::EC2
|
|
45908
45633
|
# instance_pools_to_use_count: 1,
|
45909
45634
|
# tag_specifications: [
|
45910
45635
|
# {
|
45911
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
45636
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
45912
45637
|
# tags: [
|
45913
45638
|
# {
|
45914
45639
|
# key: "String",
|
@@ -46043,7 +45768,7 @@ module Aws::EC2
|
|
46043
45768
|
# valid_until: Time.now,
|
46044
45769
|
# tag_specifications: [
|
46045
45770
|
# {
|
46046
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
45771
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
46047
45772
|
# tags: [
|
46048
45773
|
# {
|
46049
45774
|
# key: "String",
|
@@ -47556,21 +47281,18 @@ module Aws::EC2
|
|
47556
47281
|
# {
|
47557
47282
|
# cidr_ip: "String",
|
47558
47283
|
# description: "String",
|
47559
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47560
47284
|
# },
|
47561
47285
|
# ],
|
47562
47286
|
# ipv_6_ranges: [
|
47563
47287
|
# {
|
47564
47288
|
# cidr_ipv_6: "String",
|
47565
47289
|
# description: "String",
|
47566
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47567
47290
|
# },
|
47568
47291
|
# ],
|
47569
47292
|
# prefix_list_ids: [
|
47570
47293
|
# {
|
47571
47294
|
# description: "String",
|
47572
47295
|
# prefix_list_id: "String",
|
47573
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47574
47296
|
# },
|
47575
47297
|
# ],
|
47576
47298
|
# to_port: 1,
|
@@ -47583,12 +47305,10 @@ module Aws::EC2
|
|
47583
47305
|
# user_id: "String",
|
47584
47306
|
# vpc_id: "String",
|
47585
47307
|
# vpc_peering_connection_id: "String",
|
47586
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47587
47308
|
# },
|
47588
47309
|
# ],
|
47589
47310
|
# },
|
47590
47311
|
# ],
|
47591
|
-
# security_group_rule_ids: ["String"],
|
47592
47312
|
# cidr_ip: "String",
|
47593
47313
|
# from_port: 1,
|
47594
47314
|
# ip_protocol: "String",
|
@@ -47614,10 +47334,6 @@ module Aws::EC2
|
|
47614
47334
|
# permissions.
|
47615
47335
|
# @return [Array<Types::IpPermission>]
|
47616
47336
|
#
|
47617
|
-
# @!attribute [rw] security_group_rule_ids
|
47618
|
-
# The IDs of the security group rules.
|
47619
|
-
# @return [Array<String>]
|
47620
|
-
#
|
47621
47337
|
# @!attribute [rw] cidr_ip
|
47622
47338
|
# Not supported. Use a set of IP permissions to specify the CIDR.
|
47623
47339
|
# @return [String]
|
@@ -47651,7 +47367,6 @@ module Aws::EC2
|
|
47651
47367
|
:dry_run,
|
47652
47368
|
:group_id,
|
47653
47369
|
:ip_permissions,
|
47654
|
-
:security_group_rule_ids,
|
47655
47370
|
:cidr_ip,
|
47656
47371
|
:from_port,
|
47657
47372
|
:ip_protocol,
|
@@ -47697,21 +47412,18 @@ module Aws::EC2
|
|
47697
47412
|
# {
|
47698
47413
|
# cidr_ip: "String",
|
47699
47414
|
# description: "String",
|
47700
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47701
47415
|
# },
|
47702
47416
|
# ],
|
47703
47417
|
# ipv_6_ranges: [
|
47704
47418
|
# {
|
47705
47419
|
# cidr_ipv_6: "String",
|
47706
47420
|
# description: "String",
|
47707
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47708
47421
|
# },
|
47709
47422
|
# ],
|
47710
47423
|
# prefix_list_ids: [
|
47711
47424
|
# {
|
47712
47425
|
# description: "String",
|
47713
47426
|
# prefix_list_id: "String",
|
47714
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47715
47427
|
# },
|
47716
47428
|
# ],
|
47717
47429
|
# to_port: 1,
|
@@ -47724,7 +47436,6 @@ module Aws::EC2
|
|
47724
47436
|
# user_id: "String",
|
47725
47437
|
# vpc_id: "String",
|
47726
47438
|
# vpc_peering_connection_id: "String",
|
47727
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
47728
47439
|
# },
|
47729
47440
|
# ],
|
47730
47441
|
# },
|
@@ -47734,7 +47445,6 @@ module Aws::EC2
|
|
47734
47445
|
# source_security_group_owner_id: "String",
|
47735
47446
|
# to_port: 1,
|
47736
47447
|
# dry_run: false,
|
47737
|
-
# security_group_rule_ids: ["String"],
|
47738
47448
|
# }
|
47739
47449
|
#
|
47740
47450
|
# @!attribute [rw] cidr_ip
|
@@ -47806,10 +47516,6 @@ module Aws::EC2
|
|
47806
47516
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
47807
47517
|
# @return [Boolean]
|
47808
47518
|
#
|
47809
|
-
# @!attribute [rw] security_group_rule_ids
|
47810
|
-
# The IDs of the security group rules.
|
47811
|
-
# @return [Array<String>]
|
47812
|
-
#
|
47813
47519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RevokeSecurityGroupIngressRequest AWS API Documentation
|
47814
47520
|
#
|
47815
47521
|
class RevokeSecurityGroupIngressRequest < Struct.new(
|
@@ -47822,8 +47528,7 @@ module Aws::EC2
|
|
47822
47528
|
:source_security_group_name,
|
47823
47529
|
:source_security_group_owner_id,
|
47824
47530
|
:to_port,
|
47825
|
-
:dry_run
|
47826
|
-
:security_group_rule_ids)
|
47531
|
+
:dry_run)
|
47827
47532
|
SENSITIVE = []
|
47828
47533
|
include Aws::Structure
|
47829
47534
|
end
|
@@ -48174,7 +47879,7 @@ module Aws::EC2
|
|
48174
47879
|
# ],
|
48175
47880
|
# tag_specifications: [
|
48176
47881
|
# {
|
48177
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
47882
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
48178
47883
|
# tags: [
|
48179
47884
|
# {
|
48180
47885
|
# key: "String",
|
@@ -49908,7 +49613,7 @@ module Aws::EC2
|
|
49908
49613
|
include Aws::Structure
|
49909
49614
|
end
|
49910
49615
|
|
49911
|
-
# Describes a security group
|
49616
|
+
# Describes a security group
|
49912
49617
|
#
|
49913
49618
|
# @!attribute [rw] description
|
49914
49619
|
# A description of the security group.
|
@@ -50001,254 +49706,6 @@ module Aws::EC2
|
|
50001
49706
|
include Aws::Structure
|
50002
49707
|
end
|
50003
49708
|
|
50004
|
-
# Describes a security group rule.
|
50005
|
-
#
|
50006
|
-
# @!attribute [rw] security_group_rule_id
|
50007
|
-
# The ID of the security group rule.
|
50008
|
-
# @return [String]
|
50009
|
-
#
|
50010
|
-
# @!attribute [rw] group_id
|
50011
|
-
# The ID of the security group.
|
50012
|
-
# @return [String]
|
50013
|
-
#
|
50014
|
-
# @!attribute [rw] group_owner_id
|
50015
|
-
# The ID of the AWS account that owns the security group.
|
50016
|
-
# @return [String]
|
50017
|
-
#
|
50018
|
-
# @!attribute [rw] is_egress
|
50019
|
-
# Indicates whether the security group rule is an outbound rule.
|
50020
|
-
# @return [Boolean]
|
50021
|
-
#
|
50022
|
-
# @!attribute [rw] ip_protocol
|
50023
|
-
# The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
|
50024
|
-
# [Protocol Numbers][1]).
|
50025
|
-
#
|
50026
|
-
# Use `-1` to specify all protocols.
|
50027
|
-
#
|
50028
|
-
#
|
50029
|
-
#
|
50030
|
-
# [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
|
50031
|
-
# @return [String]
|
50032
|
-
#
|
50033
|
-
# @!attribute [rw] from_port
|
50034
|
-
# The start of port range for the TCP and UDP protocols, or an
|
50035
|
-
# ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
|
50036
|
-
# you specify all ICMP/ICMPv6 types, you must specify all codes.
|
50037
|
-
# @return [Integer]
|
50038
|
-
#
|
50039
|
-
# @!attribute [rw] to_port
|
50040
|
-
# The end of port range for the TCP and UDP protocols, or an
|
50041
|
-
# ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
|
50042
|
-
# If you specify all ICMP/ICMPv6 types, you must specify all codes.
|
50043
|
-
# @return [Integer]
|
50044
|
-
#
|
50045
|
-
# @!attribute [rw] cidr_ipv_4
|
50046
|
-
# The IPv4 CIDR range.
|
50047
|
-
# @return [String]
|
50048
|
-
#
|
50049
|
-
# @!attribute [rw] cidr_ipv_6
|
50050
|
-
# The IPv6 CIDR range.
|
50051
|
-
# @return [String]
|
50052
|
-
#
|
50053
|
-
# @!attribute [rw] prefix_list_id
|
50054
|
-
# The ID of the prefix list.
|
50055
|
-
# @return [String]
|
50056
|
-
#
|
50057
|
-
# @!attribute [rw] referenced_group_info
|
50058
|
-
# Describes the security group that is referenced in the rule.
|
50059
|
-
# @return [Types::ReferencedSecurityGroup]
|
50060
|
-
#
|
50061
|
-
# @!attribute [rw] description
|
50062
|
-
# The security group rule description.
|
50063
|
-
# @return [String]
|
50064
|
-
#
|
50065
|
-
# @!attribute [rw] tags
|
50066
|
-
# The tags applied to the security group rule.
|
50067
|
-
# @return [Array<Types::Tag>]
|
50068
|
-
#
|
50069
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRule AWS API Documentation
|
50070
|
-
#
|
50071
|
-
class SecurityGroupRule < Struct.new(
|
50072
|
-
:security_group_rule_id,
|
50073
|
-
:group_id,
|
50074
|
-
:group_owner_id,
|
50075
|
-
:is_egress,
|
50076
|
-
:ip_protocol,
|
50077
|
-
:from_port,
|
50078
|
-
:to_port,
|
50079
|
-
:cidr_ipv_4,
|
50080
|
-
:cidr_ipv_6,
|
50081
|
-
:prefix_list_id,
|
50082
|
-
:referenced_group_info,
|
50083
|
-
:description,
|
50084
|
-
:tags)
|
50085
|
-
SENSITIVE = []
|
50086
|
-
include Aws::Structure
|
50087
|
-
end
|
50088
|
-
|
50089
|
-
# Describes the description of a security group rule.
|
50090
|
-
#
|
50091
|
-
# You can use this when you want to update the security group rule
|
50092
|
-
# description for either an inbound or outbound rule.
|
50093
|
-
#
|
50094
|
-
# @note When making an API call, you may pass SecurityGroupRuleDescription
|
50095
|
-
# data as a hash:
|
50096
|
-
#
|
50097
|
-
# {
|
50098
|
-
# security_group_rule_id: "String",
|
50099
|
-
# description: "String",
|
50100
|
-
# }
|
50101
|
-
#
|
50102
|
-
# @!attribute [rw] security_group_rule_id
|
50103
|
-
# The ID of the security group rule.
|
50104
|
-
# @return [String]
|
50105
|
-
#
|
50106
|
-
# @!attribute [rw] description
|
50107
|
-
# The description of the security group rule.
|
50108
|
-
# @return [String]
|
50109
|
-
#
|
50110
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleDescription AWS API Documentation
|
50111
|
-
#
|
50112
|
-
class SecurityGroupRuleDescription < Struct.new(
|
50113
|
-
:security_group_rule_id,
|
50114
|
-
:description)
|
50115
|
-
SENSITIVE = []
|
50116
|
-
include Aws::Structure
|
50117
|
-
end
|
50118
|
-
|
50119
|
-
# Describes a security group rule.
|
50120
|
-
#
|
50121
|
-
# You can only use one of the following to specify the rule:
|
50122
|
-
#
|
50123
|
-
# * CidrIpv4
|
50124
|
-
#
|
50125
|
-
# * CidrIpv6
|
50126
|
-
#
|
50127
|
-
# * PrefixListId
|
50128
|
-
#
|
50129
|
-
# * ReferencedGroupId
|
50130
|
-
#
|
50131
|
-
# <note markdown="1"> When you run the [ModifySecurityGroupRules][1] command, you cannot
|
50132
|
-
# change the rule type. For example if the rules references `CidrIpv4`,
|
50133
|
-
# then you must use `CidrIpv4` to reference the rule.
|
50134
|
-
#
|
50135
|
-
# </note>
|
50136
|
-
#
|
50137
|
-
#
|
50138
|
-
#
|
50139
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_ModifySecurityGroupRules.html
|
50140
|
-
#
|
50141
|
-
# @note When making an API call, you may pass SecurityGroupRuleRequest
|
50142
|
-
# data as a hash:
|
50143
|
-
#
|
50144
|
-
# {
|
50145
|
-
# ip_protocol: "String",
|
50146
|
-
# from_port: 1,
|
50147
|
-
# to_port: 1,
|
50148
|
-
# cidr_ipv_4: "String",
|
50149
|
-
# cidr_ipv_6: "String",
|
50150
|
-
# prefix_list_id: "PrefixListResourceId",
|
50151
|
-
# referenced_group_id: "SecurityGroupId",
|
50152
|
-
# description: "String",
|
50153
|
-
# }
|
50154
|
-
#
|
50155
|
-
# @!attribute [rw] ip_protocol
|
50156
|
-
# The IP protocol name (`tcp`, `udp`, `icmp`, `icmpv6`) or number (see
|
50157
|
-
# [Protocol Numbers][1]).
|
50158
|
-
#
|
50159
|
-
# Use `-1` to specify all protocols.
|
50160
|
-
#
|
50161
|
-
#
|
50162
|
-
#
|
50163
|
-
# [1]: http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
|
50164
|
-
# @return [String]
|
50165
|
-
#
|
50166
|
-
# @!attribute [rw] from_port
|
50167
|
-
# The start of port range for the TCP and UDP protocols, or an
|
50168
|
-
# ICMP/ICMPv6 type. A value of -1 indicates all ICMP/ICMPv6 types. If
|
50169
|
-
# you specify all ICMP/ICMPv6 types, you must specify all codes.
|
50170
|
-
# @return [Integer]
|
50171
|
-
#
|
50172
|
-
# @!attribute [rw] to_port
|
50173
|
-
# The end of port range for the TCP and UDP protocols, or an
|
50174
|
-
# ICMP/ICMPv6 code. A value of `-1` indicates all ICMP/ICMPv6 codes.
|
50175
|
-
# If you specify all ICMP/ICMPv6 types, you must specify all codes.
|
50176
|
-
# @return [Integer]
|
50177
|
-
#
|
50178
|
-
# @!attribute [rw] cidr_ipv_4
|
50179
|
-
# The IPv4 CIDR range. To specify a single IPv4 address, use the /32
|
50180
|
-
# prefix length.
|
50181
|
-
# @return [String]
|
50182
|
-
#
|
50183
|
-
# @!attribute [rw] cidr_ipv_6
|
50184
|
-
# The IPv6 CIDR range. To specify a single IPv6 address, use the /128
|
50185
|
-
# prefix length.
|
50186
|
-
# @return [String]
|
50187
|
-
#
|
50188
|
-
# @!attribute [rw] prefix_list_id
|
50189
|
-
# The ID of the prefix list.
|
50190
|
-
# @return [String]
|
50191
|
-
#
|
50192
|
-
# @!attribute [rw] referenced_group_id
|
50193
|
-
# The ID of the security group that is referenced in the security
|
50194
|
-
# group rule.
|
50195
|
-
# @return [String]
|
50196
|
-
#
|
50197
|
-
# @!attribute [rw] description
|
50198
|
-
# The description of the security group rule.
|
50199
|
-
# @return [String]
|
50200
|
-
#
|
50201
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleRequest AWS API Documentation
|
50202
|
-
#
|
50203
|
-
class SecurityGroupRuleRequest < Struct.new(
|
50204
|
-
:ip_protocol,
|
50205
|
-
:from_port,
|
50206
|
-
:to_port,
|
50207
|
-
:cidr_ipv_4,
|
50208
|
-
:cidr_ipv_6,
|
50209
|
-
:prefix_list_id,
|
50210
|
-
:referenced_group_id,
|
50211
|
-
:description)
|
50212
|
-
SENSITIVE = []
|
50213
|
-
include Aws::Structure
|
50214
|
-
end
|
50215
|
-
|
50216
|
-
# Describes an update to a security group rule.
|
50217
|
-
#
|
50218
|
-
# @note When making an API call, you may pass SecurityGroupRuleUpdate
|
50219
|
-
# data as a hash:
|
50220
|
-
#
|
50221
|
-
# {
|
50222
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
50223
|
-
# security_group_rule: {
|
50224
|
-
# ip_protocol: "String",
|
50225
|
-
# from_port: 1,
|
50226
|
-
# to_port: 1,
|
50227
|
-
# cidr_ipv_4: "String",
|
50228
|
-
# cidr_ipv_6: "String",
|
50229
|
-
# prefix_list_id: "PrefixListResourceId",
|
50230
|
-
# referenced_group_id: "SecurityGroupId",
|
50231
|
-
# description: "String",
|
50232
|
-
# },
|
50233
|
-
# }
|
50234
|
-
#
|
50235
|
-
# @!attribute [rw] security_group_rule_id
|
50236
|
-
# The ID of the security group rule.
|
50237
|
-
# @return [String]
|
50238
|
-
#
|
50239
|
-
# @!attribute [rw] security_group_rule
|
50240
|
-
# Information about the security group rule.
|
50241
|
-
# @return [Types::SecurityGroupRuleRequest]
|
50242
|
-
#
|
50243
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SecurityGroupRuleUpdate AWS API Documentation
|
50244
|
-
#
|
50245
|
-
class SecurityGroupRuleUpdate < Struct.new(
|
50246
|
-
:security_group_rule_id,
|
50247
|
-
:security_group_rule)
|
50248
|
-
SENSITIVE = []
|
50249
|
-
include Aws::Structure
|
50250
|
-
end
|
50251
|
-
|
50252
49709
|
# @note When making an API call, you may pass SendDiagnosticInterruptRequest
|
50253
49710
|
# data as a hash:
|
50254
49711
|
#
|
@@ -51028,7 +50485,7 @@ module Aws::EC2
|
|
51028
50485
|
# weighted_capacity: 1.0,
|
51029
50486
|
# tag_specifications: [
|
51030
50487
|
# {
|
51031
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
50488
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
51032
50489
|
# tags: [
|
51033
50490
|
# {
|
51034
50491
|
# key: "String",
|
@@ -51341,7 +50798,7 @@ module Aws::EC2
|
|
51341
50798
|
# weighted_capacity: 1.0,
|
51342
50799
|
# tag_specifications: [
|
51343
50800
|
# {
|
51344
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
50801
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
51345
50802
|
# tags: [
|
51346
50803
|
# {
|
51347
50804
|
# key: "String",
|
@@ -51401,7 +50858,7 @@ module Aws::EC2
|
|
51401
50858
|
# instance_pools_to_use_count: 1,
|
51402
50859
|
# tag_specifications: [
|
51403
50860
|
# {
|
51404
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
50861
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
51405
50862
|
# tags: [
|
51406
50863
|
# {
|
51407
50864
|
# key: "String",
|
@@ -51667,7 +51124,7 @@ module Aws::EC2
|
|
51667
51124
|
# data as a hash:
|
51668
51125
|
#
|
51669
51126
|
# {
|
51670
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
51127
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
51671
51128
|
# tags: [
|
51672
51129
|
# {
|
51673
51130
|
# key: "String",
|
@@ -52385,7 +51842,7 @@ module Aws::EC2
|
|
52385
51842
|
# dry_run: false,
|
52386
51843
|
# tag_specifications: [
|
52387
51844
|
# {
|
52388
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
51845
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
52389
51846
|
# tags: [
|
52390
51847
|
# {
|
52391
51848
|
# key: "String",
|
@@ -52984,7 +52441,7 @@ module Aws::EC2
|
|
52984
52441
|
# data as a hash:
|
52985
52442
|
#
|
52986
52443
|
# {
|
52987
|
-
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group,
|
52444
|
+
# resource_type: "client-vpn-endpoint", # accepts client-vpn-endpoint, customer-gateway, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, import-image-task, import-snapshot-task, instance, internet-gateway, key-pair, launch-template, local-gateway-route-table-vpc-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, placement-group, reserved-instances, route-table, security-group, snapshot, spot-fleet-request, spot-instances-request, subnet, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-route-table, volume, vpc, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log
|
52988
52445
|
# tags: [
|
52989
52446
|
# {
|
52990
52447
|
# key: "String",
|
@@ -55245,7 +54702,7 @@ module Aws::EC2
|
|
55245
54702
|
# dry_run: false,
|
55246
54703
|
# group_id: "SecurityGroupId",
|
55247
54704
|
# group_name: "SecurityGroupName",
|
55248
|
-
# ip_permissions: [
|
54705
|
+
# ip_permissions: [ # required
|
55249
54706
|
# {
|
55250
54707
|
# from_port: 1,
|
55251
54708
|
# ip_protocol: "String",
|
@@ -55253,21 +54710,18 @@ module Aws::EC2
|
|
55253
54710
|
# {
|
55254
54711
|
# cidr_ip: "String",
|
55255
54712
|
# description: "String",
|
55256
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55257
54713
|
# },
|
55258
54714
|
# ],
|
55259
54715
|
# ipv_6_ranges: [
|
55260
54716
|
# {
|
55261
54717
|
# cidr_ipv_6: "String",
|
55262
54718
|
# description: "String",
|
55263
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55264
54719
|
# },
|
55265
54720
|
# ],
|
55266
54721
|
# prefix_list_ids: [
|
55267
54722
|
# {
|
55268
54723
|
# description: "String",
|
55269
54724
|
# prefix_list_id: "String",
|
55270
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55271
54725
|
# },
|
55272
54726
|
# ],
|
55273
54727
|
# to_port: 1,
|
@@ -55280,17 +54734,10 @@ module Aws::EC2
|
|
55280
54734
|
# user_id: "String",
|
55281
54735
|
# vpc_id: "String",
|
55282
54736
|
# vpc_peering_connection_id: "String",
|
55283
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55284
54737
|
# },
|
55285
54738
|
# ],
|
55286
54739
|
# },
|
55287
54740
|
# ],
|
55288
|
-
# security_group_rule_descriptions: [
|
55289
|
-
# {
|
55290
|
-
# security_group_rule_id: "String",
|
55291
|
-
# description: "String",
|
55292
|
-
# },
|
55293
|
-
# ],
|
55294
54741
|
# }
|
55295
54742
|
#
|
55296
54743
|
# @!attribute [rw] dry_run
|
@@ -55313,24 +54760,16 @@ module Aws::EC2
|
|
55313
54760
|
# @return [String]
|
55314
54761
|
#
|
55315
54762
|
# @!attribute [rw] ip_permissions
|
55316
|
-
# The IP permissions for the security group rule.
|
55317
|
-
# specify this parameter, or the `SecurityGroupRuleDescriptions`
|
55318
|
-
# parameter.
|
54763
|
+
# The IP permissions for the security group rule.
|
55319
54764
|
# @return [Array<Types::IpPermission>]
|
55320
54765
|
#
|
55321
|
-
# @!attribute [rw] security_group_rule_descriptions
|
55322
|
-
# The description for the egress security group rules. You can either
|
55323
|
-
# specify this parameter, or the `IpPermissions` parameter.
|
55324
|
-
# @return [Array<Types::SecurityGroupRuleDescription>]
|
55325
|
-
#
|
55326
54766
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsEgressRequest AWS API Documentation
|
55327
54767
|
#
|
55328
54768
|
class UpdateSecurityGroupRuleDescriptionsEgressRequest < Struct.new(
|
55329
54769
|
:dry_run,
|
55330
54770
|
:group_id,
|
55331
54771
|
:group_name,
|
55332
|
-
:ip_permissions
|
55333
|
-
:security_group_rule_descriptions)
|
54772
|
+
:ip_permissions)
|
55334
54773
|
SENSITIVE = []
|
55335
54774
|
include Aws::Structure
|
55336
54775
|
end
|
@@ -55354,7 +54793,7 @@ module Aws::EC2
|
|
55354
54793
|
# dry_run: false,
|
55355
54794
|
# group_id: "SecurityGroupId",
|
55356
54795
|
# group_name: "SecurityGroupName",
|
55357
|
-
# ip_permissions: [
|
54796
|
+
# ip_permissions: [ # required
|
55358
54797
|
# {
|
55359
54798
|
# from_port: 1,
|
55360
54799
|
# ip_protocol: "String",
|
@@ -55362,21 +54801,18 @@ module Aws::EC2
|
|
55362
54801
|
# {
|
55363
54802
|
# cidr_ip: "String",
|
55364
54803
|
# description: "String",
|
55365
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55366
54804
|
# },
|
55367
54805
|
# ],
|
55368
54806
|
# ipv_6_ranges: [
|
55369
54807
|
# {
|
55370
54808
|
# cidr_ipv_6: "String",
|
55371
54809
|
# description: "String",
|
55372
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55373
54810
|
# },
|
55374
54811
|
# ],
|
55375
54812
|
# prefix_list_ids: [
|
55376
54813
|
# {
|
55377
54814
|
# description: "String",
|
55378
54815
|
# prefix_list_id: "String",
|
55379
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55380
54816
|
# },
|
55381
54817
|
# ],
|
55382
54818
|
# to_port: 1,
|
@@ -55389,17 +54825,10 @@ module Aws::EC2
|
|
55389
54825
|
# user_id: "String",
|
55390
54826
|
# vpc_id: "String",
|
55391
54827
|
# vpc_peering_connection_id: "String",
|
55392
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55393
54828
|
# },
|
55394
54829
|
# ],
|
55395
54830
|
# },
|
55396
54831
|
# ],
|
55397
|
-
# security_group_rule_descriptions: [
|
55398
|
-
# {
|
55399
|
-
# security_group_rule_id: "String",
|
55400
|
-
# description: "String",
|
55401
|
-
# },
|
55402
|
-
# ],
|
55403
54832
|
# }
|
55404
54833
|
#
|
55405
54834
|
# @!attribute [rw] dry_run
|
@@ -55422,25 +54851,16 @@ module Aws::EC2
|
|
55422
54851
|
# @return [String]
|
55423
54852
|
#
|
55424
54853
|
# @!attribute [rw] ip_permissions
|
55425
|
-
# The IP permissions for the security group rule.
|
55426
|
-
# specify this parameter, or the `SecurityGroupRuleDescriptions`
|
55427
|
-
# parameter.
|
54854
|
+
# The IP permissions for the security group rule.
|
55428
54855
|
# @return [Array<Types::IpPermission>]
|
55429
54856
|
#
|
55430
|
-
# @!attribute [rw] security_group_rule_descriptions
|
55431
|
-
# \[VPC only\] The description for the ingress security group rules.
|
55432
|
-
# You can either specify this parameter, or the `IpPermissions`
|
55433
|
-
# parameter.
|
55434
|
-
# @return [Array<Types::SecurityGroupRuleDescription>]
|
55435
|
-
#
|
55436
54857
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UpdateSecurityGroupRuleDescriptionsIngressRequest AWS API Documentation
|
55437
54858
|
#
|
55438
54859
|
class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
|
55439
54860
|
:dry_run,
|
55440
54861
|
:group_id,
|
55441
54862
|
:group_name,
|
55442
|
-
:ip_permissions
|
55443
|
-
:security_group_rule_descriptions)
|
54863
|
+
:ip_permissions)
|
55444
54864
|
SENSITIVE = []
|
55445
54865
|
include Aws::Structure
|
55446
54866
|
end
|
@@ -55539,7 +54959,6 @@ module Aws::EC2
|
|
55539
54959
|
# user_id: "String",
|
55540
54960
|
# vpc_id: "String",
|
55541
54961
|
# vpc_peering_connection_id: "String",
|
55542
|
-
# security_group_rule_id: "SecurityGroupRuleId",
|
55543
54962
|
# }
|
55544
54963
|
#
|
55545
54964
|
# @!attribute [rw] description
|
@@ -55586,10 +55005,6 @@ module Aws::EC2
|
|
55586
55005
|
# The ID of the VPC peering connection, if applicable.
|
55587
55006
|
# @return [String]
|
55588
55007
|
#
|
55589
|
-
# @!attribute [rw] security_group_rule_id
|
55590
|
-
# The ID of the security group rule.
|
55591
|
-
# @return [String]
|
55592
|
-
#
|
55593
55008
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/UserIdGroupPair AWS API Documentation
|
55594
55009
|
#
|
55595
55010
|
class UserIdGroupPair < Struct.new(
|
@@ -55599,8 +55014,7 @@ module Aws::EC2
|
|
55599
55014
|
:peering_status,
|
55600
55015
|
:user_id,
|
55601
55016
|
:vpc_id,
|
55602
|
-
:vpc_peering_connection_id
|
55603
|
-
:security_group_rule_id)
|
55017
|
+
:vpc_peering_connection_id)
|
55604
55018
|
SENSITIVE = []
|
55605
55019
|
include Aws::Structure
|
55606
55020
|
end
|