aws-sdk-ec2 1.611.0 → 1.613.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.
@@ -632,6 +632,49 @@ module Aws::EC2
632
632
  req.send_request(options)
633
633
  end
634
634
 
635
+ # Accepts a Transit Gateway attachment request for a Client VPN
636
+ # endpoint. The Transit Gateway owner must accept the attachment request
637
+ # before the Client VPN endpoint can route traffic through the Transit
638
+ # Gateway.
639
+ #
640
+ # @option params [required, String] :transit_gateway_attachment_id
641
+ # The ID of the Transit Gateway attachment.
642
+ #
643
+ # @option params [Boolean] :dry_run
644
+ # Checks whether you have the required permissions for the action,
645
+ # without actually making the request, and provides an error response.
646
+ # If you have the required permissions, the error response is
647
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
648
+ #
649
+ # @return [Types::AcceptTransitGatewayClientVpnAttachmentResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
650
+ #
651
+ # * {Types::AcceptTransitGatewayClientVpnAttachmentResult#transit_gateway_client_vpn_attachment #transit_gateway_client_vpn_attachment} => Types::TransitGatewayClientVpnAttachment
652
+ #
653
+ # @example Request syntax with placeholder values
654
+ #
655
+ # resp = client.accept_transit_gateway_client_vpn_attachment({
656
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
657
+ # dry_run: false,
658
+ # })
659
+ #
660
+ # @example Response structure
661
+ #
662
+ # resp.transit_gateway_client_vpn_attachment.transit_gateway_attachment_id #=> String
663
+ # resp.transit_gateway_client_vpn_attachment.transit_gateway_id #=> String
664
+ # resp.transit_gateway_client_vpn_attachment.client_vpn_endpoint_id #=> String
665
+ # resp.transit_gateway_client_vpn_attachment.client_vpn_owner_id #=> String
666
+ # resp.transit_gateway_client_vpn_attachment.state #=> String, one of "pending-acceptance", "pending", "rejected", "available", "deleting", "deleted"
667
+ # resp.transit_gateway_client_vpn_attachment.creation_time #=> String
668
+ #
669
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AcceptTransitGatewayClientVpnAttachment AWS API Documentation
670
+ #
671
+ # @overload accept_transit_gateway_client_vpn_attachment(params = {})
672
+ # @param [Hash] params ({})
673
+ def accept_transit_gateway_client_vpn_attachment(params = {}, options = {})
674
+ req = build_request(:accept_transit_gateway_client_vpn_attachment, params)
675
+ req.send_request(options)
676
+ end
677
+
635
678
  # Accepts a request to associate subnets with a transit gateway
636
679
  # multicast domain.
637
680
  #
@@ -669,7 +712,7 @@ module Aws::EC2
669
712
  # resp.associations.transit_gateway_multicast_domain_id #=> String
670
713
  # resp.associations.transit_gateway_attachment_id #=> String
671
714
  # resp.associations.resource_id #=> String
672
- # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
715
+ # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
673
716
  # resp.associations.resource_owner_id #=> String
674
717
  # resp.associations.subnets #=> Array
675
718
  # resp.associations.subnets[0].subnet_id #=> String
@@ -1908,8 +1951,10 @@ module Aws::EC2
1908
1951
  # @option params [required, String] :client_vpn_endpoint_id
1909
1952
  # The ID of the Client VPN endpoint.
1910
1953
  #
1911
- # @option params [required, String] :subnet_id
1954
+ # @option params [String] :subnet_id
1912
1955
  # The ID of the subnet to associate with the Client VPN endpoint.
1956
+ # Required for VPC-based endpoints. For Transit Gateway-based endpoints,
1957
+ # use `AvailabilityZone` or `AvailabilityZoneId` instead.
1913
1958
  #
1914
1959
  # @option params [String] :client_token
1915
1960
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -1929,6 +1974,18 @@ module Aws::EC2
1929
1974
  # If you have the required permissions, the error response is
1930
1975
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
1931
1976
  #
1977
+ # @option params [String] :availability_zone
1978
+ # The Availability Zone name for the Transit Gateway association.
1979
+ # Required if when associating an Availability Zone with a Client VPN
1980
+ # endpoint that uses a Transit Gateway. You cannot specify both
1981
+ # `SubnetId` and `AvailabilityZone`.
1982
+ #
1983
+ # @option params [String] :availability_zone_id
1984
+ # The Availability Zone ID for the Transit Gateway association. Required
1985
+ # if when associating an Availability Zone with a Client VPN endpoint
1986
+ # that uses a Transit Gateway. You cannot specify both
1987
+ # `AvailabilityZone` and `AvailabilityZoneId`.
1988
+ #
1932
1989
  # @return [Types::AssociateClientVpnTargetNetworkResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1933
1990
  #
1934
1991
  # * {Types::AssociateClientVpnTargetNetworkResult#association_id #association_id} => String
@@ -1938,9 +1995,11 @@ module Aws::EC2
1938
1995
  #
1939
1996
  # resp = client.associate_client_vpn_target_network({
1940
1997
  # client_vpn_endpoint_id: "ClientVpnEndpointId", # required
1941
- # subnet_id: "SubnetId", # required
1998
+ # subnet_id: "SubnetId",
1942
1999
  # client_token: "String",
1943
2000
  # dry_run: false,
2001
+ # availability_zone: "AvailabilityZoneName",
2002
+ # availability_zone_id: "AvailabilityZoneId",
1944
2003
  # })
1945
2004
  #
1946
2005
  # @example Response structure
@@ -2745,7 +2804,7 @@ module Aws::EC2
2745
2804
  # resp.associations.transit_gateway_multicast_domain_id #=> String
2746
2805
  # resp.associations.transit_gateway_attachment_id #=> String
2747
2806
  # resp.associations.resource_id #=> String
2748
- # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
2807
+ # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
2749
2808
  # resp.associations.resource_owner_id #=> String
2750
2809
  # resp.associations.subnets #=> Array
2751
2810
  # resp.associations.subnets[0].subnet_id #=> String
@@ -2794,7 +2853,7 @@ module Aws::EC2
2794
2853
  # resp.association.transit_gateway_policy_table_id #=> String
2795
2854
  # resp.association.transit_gateway_attachment_id #=> String
2796
2855
  # resp.association.resource_id #=> String
2797
- # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
2856
+ # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
2798
2857
  # resp.association.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
2799
2858
  #
2800
2859
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateTransitGatewayPolicyTable AWS API Documentation
@@ -2839,7 +2898,7 @@ module Aws::EC2
2839
2898
  # resp.association.transit_gateway_route_table_id #=> String
2840
2899
  # resp.association.transit_gateway_attachment_id #=> String
2841
2900
  # resp.association.resource_id #=> String
2842
- # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
2901
+ # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
2843
2902
  # resp.association.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
2844
2903
  #
2845
2904
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AssociateTransitGatewayRouteTable AWS API Documentation
@@ -5601,6 +5660,7 @@ module Aws::EC2
5601
5660
  # resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
5602
5661
  # resp.volumes[0].operator.managed #=> Boolean
5603
5662
  # resp.volumes[0].operator.principal #=> String
5663
+ # resp.volumes[0].operator.hidden_by_default #=> Boolean
5604
5664
  # resp.volumes[0].volume_initialization_rate #=> Integer
5605
5665
  # resp.volumes[0].volume_id #=> String
5606
5666
  # resp.volumes[0].size #=> Integer
@@ -6598,6 +6658,12 @@ module Aws::EC2
6598
6658
  # set to `dual-stack`, clients can access both IPv4 and IPv6 resources
6599
6659
  # through the VPN .
6600
6660
  #
6661
+ # @option params [Types::TransitGatewayConfigurationInputStructure] :transit_gateway_configuration
6662
+ # The Transit Gateway configuration for the Client VPN endpoint. Use
6663
+ # this parameter to associate the endpoint with a Transit Gateway
6664
+ # instead of a VPC. You cannot specify both
6665
+ # `TransitGatewayConfiguration` and `VpcId`/`SecurityGroupIds`.
6666
+ #
6601
6667
  # @return [Types::CreateClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6602
6668
  #
6603
6669
  # * {Types::CreateClientVpnEndpointResult#client_vpn_endpoint_id #client_vpn_endpoint_id} => String
@@ -6665,12 +6731,17 @@ module Aws::EC2
6665
6731
  # disconnect_on_session_timeout: false,
6666
6732
  # endpoint_ip_address_type: "ipv4", # accepts ipv4, ipv6, dual-stack
6667
6733
  # traffic_ip_address_type: "ipv4", # accepts ipv4, ipv6, dual-stack
6734
+ # transit_gateway_configuration: {
6735
+ # transit_gateway_id: "TransitGatewayId",
6736
+ # availability_zones: ["AvailabilityZoneName"],
6737
+ # availability_zone_ids: ["AvailabilityZoneId"],
6738
+ # },
6668
6739
  # })
6669
6740
  #
6670
6741
  # @example Response structure
6671
6742
  #
6672
6743
  # resp.client_vpn_endpoint_id #=> String
6673
- # resp.status.code #=> String, one of "pending-associate", "available", "deleting", "deleted"
6744
+ # resp.status.code #=> String, one of "pending-associate", "available", "deleting", "deleted", "pending"
6674
6745
  # resp.status.message #=> String
6675
6746
  # resp.dns_name #=> String
6676
6747
  #
@@ -6705,7 +6776,7 @@ module Aws::EC2
6705
6776
  #
6706
6777
  # * To add a route for the local network, enter the client CIDR range
6707
6778
  #
6708
- # @option params [required, String] :target_vpc_subnet_id
6779
+ # @option params [String] :target_vpc_subnet_id
6709
6780
  # The ID of the subnet through which you want to route traffic. The
6710
6781
  # specified subnet must be an existing target network of the Client VPN
6711
6782
  # endpoint.
@@ -6713,6 +6784,9 @@ module Aws::EC2
6713
6784
  # Alternatively, if you're adding a route for the local network,
6714
6785
  # specify `local`.
6715
6786
  #
6787
+ # This parameter is required for VPC-based Client VPN endpoints. For
6788
+ # Transit Gateway-based endpoints, this parameter is not required.
6789
+ #
6716
6790
  # @option params [String] :description
6717
6791
  # A brief description of the route.
6718
6792
  #
@@ -6743,7 +6817,7 @@ module Aws::EC2
6743
6817
  # resp = client.create_client_vpn_route({
6744
6818
  # client_vpn_endpoint_id: "ClientVpnEndpointId", # required
6745
6819
  # destination_cidr_block: "String", # required
6746
- # target_vpc_subnet_id: "SubnetId", # required
6820
+ # target_vpc_subnet_id: "SubnetId",
6747
6821
  # description: "String",
6748
6822
  # client_token: "String",
6749
6823
  # dry_run: false,
@@ -10587,6 +10661,7 @@ module Aws::EC2
10587
10661
  # resp.launch_template.tags[0].value #=> String
10588
10662
  # resp.launch_template.operator.managed #=> Boolean
10589
10663
  # resp.launch_template.operator.principal #=> String
10664
+ # resp.launch_template.operator.hidden_by_default #=> Boolean
10590
10665
  # resp.warning.errors #=> Array
10591
10666
  # resp.warning.errors[0].code #=> String
10592
10667
  # resp.warning.errors[0].message #=> String
@@ -11177,6 +11252,7 @@ module Aws::EC2
11177
11252
  # resp.launch_template_version.launch_template_data.disable_api_stop #=> Boolean
11178
11253
  # resp.launch_template_version.launch_template_data.operator.managed #=> Boolean
11179
11254
  # resp.launch_template_version.launch_template_data.operator.principal #=> String
11255
+ # resp.launch_template_version.launch_template_data.operator.hidden_by_default #=> Boolean
11180
11256
  # resp.launch_template_version.launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
11181
11257
  # resp.launch_template_version.launch_template_data.secondary_interfaces #=> Array
11182
11258
  # resp.launch_template_version.launch_template_data.secondary_interfaces[0].delete_on_termination #=> Boolean
@@ -11189,6 +11265,7 @@ module Aws::EC2
11189
11265
  # resp.launch_template_version.launch_template_data.secondary_interfaces[0].network_card_index #=> Integer
11190
11266
  # resp.launch_template_version.operator.managed #=> Boolean
11191
11267
  # resp.launch_template_version.operator.principal #=> String
11268
+ # resp.launch_template_version.operator.hidden_by_default #=> Boolean
11192
11269
  # resp.warning.errors #=> Array
11193
11270
  # resp.warning.errors[0].code #=> String
11194
11271
  # resp.warning.errors[0].message #=> String
@@ -13152,6 +13229,7 @@ module Aws::EC2
13152
13229
  # resp.network_interface.ipv_6_address #=> String
13153
13230
  # resp.network_interface.operator.managed #=> Boolean
13154
13231
  # resp.network_interface.operator.principal #=> String
13232
+ # resp.network_interface.operator.hidden_by_default #=> Boolean
13155
13233
  # resp.network_interface.associated_subnets #=> Array
13156
13234
  # resp.network_interface.associated_subnets[0] #=> String
13157
13235
  # resp.network_interface.availability_zone_id #=> String
@@ -13334,6 +13412,7 @@ module Aws::EC2
13334
13412
  # resp.placement_group.linked_group_id #=> String
13335
13413
  # resp.placement_group.operator.managed #=> Boolean
13336
13414
  # resp.placement_group.operator.principal #=> String
13415
+ # resp.placement_group.operator.hidden_by_default #=> Boolean
13337
13416
  #
13338
13417
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreatePlacementGroup AWS API Documentation
13339
13418
  #
@@ -16473,11 +16552,11 @@ module Aws::EC2
16473
16552
  # transit_gateway_metering_policy_id: "TransitGatewayMeteringPolicyId", # required
16474
16553
  # policy_rule_number: 1, # required
16475
16554
  # source_transit_gateway_attachment_id: "TransitGatewayAttachmentId",
16476
- # source_transit_gateway_attachment_type: "vpc", # accepts vpc, vpn, vpn-concentrator, direct-connect-gateway, connect, peering, tgw-peering, network-function
16555
+ # source_transit_gateway_attachment_type: "vpc", # accepts vpc, vpn, vpn-concentrator, direct-connect-gateway, connect, peering, tgw-peering, network-function, client-vpn
16477
16556
  # source_cidr_block: "String",
16478
16557
  # source_port_range: "String",
16479
16558
  # destination_transit_gateway_attachment_id: "TransitGatewayAttachmentId",
16480
- # destination_transit_gateway_attachment_type: "vpc", # accepts vpc, vpn, vpn-concentrator, direct-connect-gateway, connect, peering, tgw-peering, network-function
16559
+ # destination_transit_gateway_attachment_type: "vpc", # accepts vpc, vpn, vpn-concentrator, direct-connect-gateway, connect, peering, tgw-peering, network-function, client-vpn
16481
16560
  # destination_cidr_block: "String",
16482
16561
  # destination_port_range: "String",
16483
16562
  # protocol: "String",
@@ -16493,11 +16572,11 @@ module Aws::EC2
16493
16572
  # resp.transit_gateway_metering_policy_entry.updated_at #=> Time
16494
16573
  # resp.transit_gateway_metering_policy_entry.update_effective_at #=> Time
16495
16574
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_transit_gateway_attachment_id #=> String
16496
- # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
16575
+ # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
16497
16576
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_cidr_block #=> String
16498
16577
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_port_range #=> String
16499
16578
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_transit_gateway_attachment_id #=> String
16500
- # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
16579
+ # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
16501
16580
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_cidr_block #=> String
16502
16581
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_port_range #=> String
16503
16582
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.protocol #=> String
@@ -16778,7 +16857,7 @@ module Aws::EC2
16778
16857
  # resp.transit_gateway_prefix_list_reference.state #=> String, one of "pending", "available", "modifying", "deleting"
16779
16858
  # resp.transit_gateway_prefix_list_reference.blackhole #=> Boolean
16780
16859
  # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.transit_gateway_attachment_id #=> String
16781
- # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
16860
+ # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
16782
16861
  # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_id #=> String
16783
16862
  #
16784
16863
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTransitGatewayPrefixListReference AWS API Documentation
@@ -16833,7 +16912,7 @@ module Aws::EC2
16833
16912
  # resp.route.transit_gateway_attachments #=> Array
16834
16913
  # resp.route.transit_gateway_attachments[0].resource_id #=> String
16835
16914
  # resp.route.transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
16836
- # resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
16915
+ # resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
16837
16916
  # resp.route.type #=> String, one of "static", "propagated"
16838
16917
  # resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
16839
16918
  #
@@ -17967,6 +18046,7 @@ module Aws::EC2
17967
18046
  # resp.sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
17968
18047
  # resp.operator.managed #=> Boolean
17969
18048
  # resp.operator.principal #=> String
18049
+ # resp.operator.hidden_by_default #=> Boolean
17970
18050
  # resp.volume_initialization_rate #=> Integer
17971
18051
  # resp.volume_id #=> String
17972
18052
  # resp.size #=> Integer
@@ -19488,7 +19568,7 @@ module Aws::EC2
19488
19568
  #
19489
19569
  # @example Response structure
19490
19570
  #
19491
- # resp.status.code #=> String, one of "pending-associate", "available", "deleting", "deleted"
19571
+ # resp.status.code #=> String, one of "pending-associate", "available", "deleting", "deleted", "pending"
19492
19572
  # resp.status.message #=> String
19493
19573
  #
19494
19574
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteClientVpnEndpoint AWS API Documentation
@@ -20733,6 +20813,7 @@ module Aws::EC2
20733
20813
  # resp.launch_template.tags[0].value #=> String
20734
20814
  # resp.launch_template.operator.managed #=> Boolean
20735
20815
  # resp.launch_template.operator.principal #=> String
20816
+ # resp.launch_template.operator.hidden_by_default #=> Boolean
20736
20817
  #
20737
20818
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLaunchTemplate AWS API Documentation
20738
20819
  #
@@ -22689,6 +22770,48 @@ module Aws::EC2
22689
22770
  req.send_request(options)
22690
22771
  end
22691
22772
 
22773
+ # Deletes a Transit Gateway attachment for a Client VPN endpoint. The
22774
+ # Transit Gateway owner can delete the attachment to remove the
22775
+ # association between the Client VPN endpoint and the Transit Gateway.
22776
+ #
22777
+ # @option params [required, String] :transit_gateway_attachment_id
22778
+ # The ID of the Transit Gateway attachment.
22779
+ #
22780
+ # @option params [Boolean] :dry_run
22781
+ # Checks whether you have the required permissions for the action,
22782
+ # without actually making the request, and provides an error response.
22783
+ # If you have the required permissions, the error response is
22784
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
22785
+ #
22786
+ # @return [Types::DeleteTransitGatewayClientVpnAttachmentResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
22787
+ #
22788
+ # * {Types::DeleteTransitGatewayClientVpnAttachmentResult#transit_gateway_client_vpn_attachment #transit_gateway_client_vpn_attachment} => Types::TransitGatewayClientVpnAttachment
22789
+ #
22790
+ # @example Request syntax with placeholder values
22791
+ #
22792
+ # resp = client.delete_transit_gateway_client_vpn_attachment({
22793
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
22794
+ # dry_run: false,
22795
+ # })
22796
+ #
22797
+ # @example Response structure
22798
+ #
22799
+ # resp.transit_gateway_client_vpn_attachment.transit_gateway_attachment_id #=> String
22800
+ # resp.transit_gateway_client_vpn_attachment.transit_gateway_id #=> String
22801
+ # resp.transit_gateway_client_vpn_attachment.client_vpn_endpoint_id #=> String
22802
+ # resp.transit_gateway_client_vpn_attachment.client_vpn_owner_id #=> String
22803
+ # resp.transit_gateway_client_vpn_attachment.state #=> String, one of "pending-acceptance", "pending", "rejected", "available", "deleting", "deleted"
22804
+ # resp.transit_gateway_client_vpn_attachment.creation_time #=> String
22805
+ #
22806
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTransitGatewayClientVpnAttachment AWS API Documentation
22807
+ #
22808
+ # @overload delete_transit_gateway_client_vpn_attachment(params = {})
22809
+ # @param [Hash] params ({})
22810
+ def delete_transit_gateway_client_vpn_attachment(params = {}, options = {})
22811
+ req = build_request(:delete_transit_gateway_client_vpn_attachment, params)
22812
+ req.send_request(options)
22813
+ end
22814
+
22692
22815
  # Deletes the specified Connect attachment. You must first delete any
22693
22816
  # Connect peers for the attachment.
22694
22817
  #
@@ -22863,11 +22986,11 @@ module Aws::EC2
22863
22986
  # resp.transit_gateway_metering_policy_entry.updated_at #=> Time
22864
22987
  # resp.transit_gateway_metering_policy_entry.update_effective_at #=> Time
22865
22988
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_transit_gateway_attachment_id #=> String
22866
- # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
22989
+ # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
22867
22990
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_cidr_block #=> String
22868
22991
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.source_port_range #=> String
22869
22992
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_transit_gateway_attachment_id #=> String
22870
- # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
22993
+ # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
22871
22994
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_cidr_block #=> String
22872
22995
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.destination_port_range #=> String
22873
22996
  # resp.transit_gateway_metering_policy_entry.metering_policy_rule.protocol #=> String
@@ -23055,7 +23178,7 @@ module Aws::EC2
23055
23178
  # resp.transit_gateway_prefix_list_reference.state #=> String, one of "pending", "available", "modifying", "deleting"
23056
23179
  # resp.transit_gateway_prefix_list_reference.blackhole #=> Boolean
23057
23180
  # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.transit_gateway_attachment_id #=> String
23058
- # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
23181
+ # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
23059
23182
  # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_id #=> String
23060
23183
  #
23061
23184
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteTransitGatewayPrefixListReference AWS API Documentation
@@ -23103,7 +23226,7 @@ module Aws::EC2
23103
23226
  # resp.route.transit_gateway_attachments #=> Array
23104
23227
  # resp.route.transit_gateway_attachments[0].resource_id #=> String
23105
23228
  # resp.route.transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
23106
- # resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
23229
+ # resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
23107
23230
  # resp.route.type #=> String, one of "static", "propagated"
23108
23231
  # resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
23109
23232
  #
@@ -26797,7 +26920,7 @@ module Aws::EC2
26797
26920
  # resp.client_vpn_endpoints #=> Array
26798
26921
  # resp.client_vpn_endpoints[0].client_vpn_endpoint_id #=> String
26799
26922
  # resp.client_vpn_endpoints[0].description #=> String
26800
- # resp.client_vpn_endpoints[0].status.code #=> String, one of "pending-associate", "available", "deleting", "deleted"
26923
+ # resp.client_vpn_endpoints[0].status.code #=> String, one of "pending-associate", "available", "deleting", "deleted", "pending"
26801
26924
  # resp.client_vpn_endpoints[0].status.message #=> String
26802
26925
  # resp.client_vpn_endpoints[0].creation_time #=> String
26803
26926
  # resp.client_vpn_endpoints[0].deletion_time #=> String
@@ -26840,6 +26963,12 @@ module Aws::EC2
26840
26963
  # resp.client_vpn_endpoints[0].disconnect_on_session_timeout #=> Boolean
26841
26964
  # resp.client_vpn_endpoints[0].endpoint_ip_address_type #=> String, one of "ipv4", "ipv6", "dual-stack"
26842
26965
  # resp.client_vpn_endpoints[0].traffic_ip_address_type #=> String, one of "ipv4", "ipv6", "dual-stack"
26966
+ # resp.client_vpn_endpoints[0].transit_gateway_configuration.transit_gateway_id #=> String
26967
+ # resp.client_vpn_endpoints[0].transit_gateway_configuration.transit_gateway_attachment_id #=> String
26968
+ # resp.client_vpn_endpoints[0].transit_gateway_configuration.availability_zones #=> Array
26969
+ # resp.client_vpn_endpoints[0].transit_gateway_configuration.availability_zones[0] #=> String
26970
+ # resp.client_vpn_endpoints[0].transit_gateway_configuration.availability_zone_ids #=> Array
26971
+ # resp.client_vpn_endpoints[0].transit_gateway_configuration.availability_zone_ids[0] #=> String
26843
26972
  # resp.next_token #=> String
26844
26973
  #
26845
26974
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnEndpoints AWS API Documentation
@@ -26914,6 +27043,7 @@ module Aws::EC2
26914
27043
  # resp.routes[0].status.code #=> String, one of "creating", "active", "failed", "deleting"
26915
27044
  # resp.routes[0].status.message #=> String
26916
27045
  # resp.routes[0].description #=> String
27046
+ # resp.routes[0].transit_gateway_attachment_id #=> String
26917
27047
  # resp.next_token #=> String
26918
27048
  #
26919
27049
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnRoutes AWS API Documentation
@@ -26992,6 +27122,10 @@ module Aws::EC2
26992
27122
  # resp.client_vpn_target_networks[0].status.message #=> String
26993
27123
  # resp.client_vpn_target_networks[0].security_groups #=> Array
26994
27124
  # resp.client_vpn_target_networks[0].security_groups[0] #=> String
27125
+ # resp.client_vpn_target_networks[0].availability_zones #=> Array
27126
+ # resp.client_vpn_target_networks[0].availability_zones[0] #=> String
27127
+ # resp.client_vpn_target_networks[0].availability_zone_ids #=> Array
27128
+ # resp.client_vpn_target_networks[0].availability_zone_ids[0] #=> String
26995
27129
  # resp.next_token #=> String
26996
27130
  #
26997
27131
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeClientVpnTargetNetworks AWS API Documentation
@@ -30377,6 +30511,7 @@ module Aws::EC2
30377
30511
  # resp.block_device_mappings[0].ebs.volume_owner_id #=> String
30378
30512
  # resp.block_device_mappings[0].ebs.operator.managed #=> Boolean
30379
30513
  # resp.block_device_mappings[0].ebs.operator.principal #=> String
30514
+ # resp.block_device_mappings[0].ebs.operator.hidden_by_default #=> Boolean
30380
30515
  # resp.block_device_mappings[0].ebs.ebs_card_index #=> Integer
30381
30516
  # resp.disable_api_termination.value #=> Boolean
30382
30517
  # resp.ena_support.value #=> Boolean
@@ -30938,6 +31073,7 @@ module Aws::EC2
30938
31073
  # resp.instance_image_metadata[0].image_metadata.is_public #=> Boolean
30939
31074
  # resp.instance_image_metadata[0].operator.managed #=> Boolean
30940
31075
  # resp.instance_image_metadata[0].operator.principal #=> String
31076
+ # resp.instance_image_metadata[0].operator.hidden_by_default #=> Boolean
30941
31077
  # resp.next_token #=> String
30942
31078
  #
30943
31079
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceImageMetadata AWS API Documentation
@@ -31203,6 +31339,12 @@ module Aws::EC2
31203
31339
  # The token returned from a previous paginated request. Pagination
31204
31340
  # continues from the end of the items returned by the previous request.
31205
31341
  #
31342
+ # @option params [Boolean] :include_managed_resources
31343
+ # Indicates whether to include managed resources in the output. If this
31344
+ # parameter is set to `true`, the output includes resources that are
31345
+ # managed by Amazon Web Services services, even if managed resource
31346
+ # visibility is set to hidden.
31347
+ #
31206
31348
  # @option params [Boolean] :dry_run
31207
31349
  # Checks whether you have the required permissions for the operation,
31208
31350
  # without actually making the request, and provides an error response.
@@ -31333,6 +31475,7 @@ module Aws::EC2
31333
31475
  # instance_ids: ["InstanceId"],
31334
31476
  # max_results: 1,
31335
31477
  # next_token: "String",
31478
+ # include_managed_resources: false,
31336
31479
  # dry_run: false,
31337
31480
  # filters: [
31338
31481
  # {
@@ -31351,6 +31494,7 @@ module Aws::EC2
31351
31494
  # resp.instance_statuses[0].outpost_arn #=> String
31352
31495
  # resp.instance_statuses[0].operator.managed #=> Boolean
31353
31496
  # resp.instance_statuses[0].operator.principal #=> String
31497
+ # resp.instance_statuses[0].operator.hidden_by_default #=> Boolean
31354
31498
  # resp.instance_statuses[0].events #=> Array
31355
31499
  # resp.instance_statuses[0].events[0].instance_event_id #=> String
31356
31500
  # resp.instance_statuses[0].events[0].code #=> String, one of "instance-reboot", "system-reboot", "system-maintenance", "instance-retirement", "instance-stop"
@@ -32040,6 +32184,12 @@ module Aws::EC2
32040
32184
  #
32041
32185
  # Default: Describes all your instances.
32042
32186
  #
32187
+ # @option params [Boolean] :include_managed_resources
32188
+ # Indicates whether to include managed resources in the output. If this
32189
+ # parameter is set to `true`, the output includes resources that are
32190
+ # managed by Amazon Web Services services, even if managed resource
32191
+ # visibility is set to hidden.
32192
+ #
32043
32193
  # @option params [Boolean] :dry_run
32044
32194
  # Checks whether you have the required permissions for the operation,
32045
32195
  # without actually making the request, and provides an error response.
@@ -32584,6 +32734,7 @@ module Aws::EC2
32584
32734
  #
32585
32735
  # resp = client.describe_instances({
32586
32736
  # instance_ids: ["InstanceId"],
32737
+ # include_managed_resources: false,
32587
32738
  # dry_run: false,
32588
32739
  # filters: [
32589
32740
  # {
@@ -32617,6 +32768,7 @@ module Aws::EC2
32617
32768
  # resp.reservations[0].instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
32618
32769
  # resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
32619
32770
  # resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.principal #=> String
32771
+ # resp.reservations[0].instances[0].block_device_mappings[0].ebs.operator.hidden_by_default #=> Boolean
32620
32772
  # resp.reservations[0].instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
32621
32773
  # resp.reservations[0].instances[0].client_token #=> String
32622
32774
  # resp.reservations[0].instances[0].ebs_optimized #=> Boolean
@@ -32685,6 +32837,7 @@ module Aws::EC2
32685
32837
  # resp.reservations[0].instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
32686
32838
  # resp.reservations[0].instances[0].network_interfaces[0].operator.managed #=> Boolean
32687
32839
  # resp.reservations[0].instances[0].network_interfaces[0].operator.principal #=> String
32840
+ # resp.reservations[0].instances[0].network_interfaces[0].operator.hidden_by_default #=> Boolean
32688
32841
  # resp.reservations[0].instances[0].outpost_arn #=> String
32689
32842
  # resp.reservations[0].instances[0].root_device_name #=> String
32690
32843
  # resp.reservations[0].instances[0].root_device_type #=> String, one of "ebs", "instance-store"
@@ -32734,6 +32887,7 @@ module Aws::EC2
32734
32887
  # resp.reservations[0].instances[0].network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
32735
32888
  # resp.reservations[0].instances[0].operator.managed #=> Boolean
32736
32889
  # resp.reservations[0].instances[0].operator.principal #=> String
32890
+ # resp.reservations[0].instances[0].operator.hidden_by_default #=> Boolean
32737
32891
  # resp.reservations[0].instances[0].secondary_interfaces #=> Array
32738
32892
  # resp.reservations[0].instances[0].secondary_interfaces[0].attachment.attach_time #=> Time
32739
32893
  # resp.reservations[0].instances[0].secondary_interfaces[0].attachment.attachment_id #=> String
@@ -34026,6 +34180,12 @@ module Aws::EC2
34026
34180
  #
34027
34181
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/create-launch-template.html#use-an-ssm-parameter-instead-of-an-ami-id
34028
34182
  #
34183
+ # @option params [Boolean] :include_managed_resources
34184
+ # Indicates whether to include managed resources in the output. If this
34185
+ # parameter is set to `true`, the output includes resources that are
34186
+ # managed by Amazon Web Services services, even if managed resource
34187
+ # visibility is set to hidden.
34188
+ #
34029
34189
  # @return [Types::DescribeLaunchTemplateVersionsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
34030
34190
  #
34031
34191
  # * {Types::DescribeLaunchTemplateVersionsResult#launch_template_versions #launch_template_versions} => Array<Types::LaunchTemplateVersion>
@@ -34113,6 +34273,7 @@ module Aws::EC2
34113
34273
  # },
34114
34274
  # ],
34115
34275
  # resolve_alias: false,
34276
+ # include_managed_resources: false,
34116
34277
  # })
34117
34278
  #
34118
34279
  # @example Response structure
@@ -34284,6 +34445,7 @@ module Aws::EC2
34284
34445
  # resp.launch_template_versions[0].launch_template_data.disable_api_stop #=> Boolean
34285
34446
  # resp.launch_template_versions[0].launch_template_data.operator.managed #=> Boolean
34286
34447
  # resp.launch_template_versions[0].launch_template_data.operator.principal #=> String
34448
+ # resp.launch_template_versions[0].launch_template_data.operator.hidden_by_default #=> Boolean
34287
34449
  # resp.launch_template_versions[0].launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
34288
34450
  # resp.launch_template_versions[0].launch_template_data.secondary_interfaces #=> Array
34289
34451
  # resp.launch_template_versions[0].launch_template_data.secondary_interfaces[0].delete_on_termination #=> Boolean
@@ -34296,6 +34458,7 @@ module Aws::EC2
34296
34458
  # resp.launch_template_versions[0].launch_template_data.secondary_interfaces[0].network_card_index #=> Integer
34297
34459
  # resp.launch_template_versions[0].operator.managed #=> Boolean
34298
34460
  # resp.launch_template_versions[0].operator.principal #=> String
34461
+ # resp.launch_template_versions[0].operator.hidden_by_default #=> Boolean
34299
34462
  # resp.next_token #=> String
34300
34463
  #
34301
34464
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplateVersions AWS API Documentation
@@ -34346,6 +34509,12 @@ module Aws::EC2
34346
34509
  # the remaining results, make another call with the returned `NextToken`
34347
34510
  # value. This value can be between 1 and 200.
34348
34511
  #
34512
+ # @option params [Boolean] :include_managed_resources
34513
+ # Indicates whether to include managed resources in the output. If this
34514
+ # parameter is set to `true`, the output includes resources that are
34515
+ # managed by Amazon Web Services services, even if managed resource
34516
+ # visibility is set to hidden.
34517
+ #
34349
34518
  # @return [Types::DescribeLaunchTemplatesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
34350
34519
  #
34351
34520
  # * {Types::DescribeLaunchTemplatesResult#launch_templates #launch_templates} => Array<Types::LaunchTemplate>
@@ -34392,6 +34561,7 @@ module Aws::EC2
34392
34561
  # ],
34393
34562
  # next_token: "String",
34394
34563
  # max_results: 1,
34564
+ # include_managed_resources: false,
34395
34565
  # })
34396
34566
  #
34397
34567
  # @example Response structure
@@ -34408,6 +34578,7 @@ module Aws::EC2
34408
34578
  # resp.launch_templates[0].tags[0].value #=> String
34409
34579
  # resp.launch_templates[0].operator.managed #=> Boolean
34410
34580
  # resp.launch_templates[0].operator.principal #=> String
34581
+ # resp.launch_templates[0].operator.hidden_by_default #=> Boolean
34411
34582
  # resp.next_token #=> String
34412
34583
  #
34413
34584
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeLaunchTemplates AWS API Documentation
@@ -37143,6 +37314,12 @@ module Aws::EC2
37143
37314
  #
37144
37315
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
37145
37316
  #
37317
+ # @option params [Boolean] :include_managed_resources
37318
+ # Indicates whether to include managed resources in the output. If this
37319
+ # parameter is set to `true`, the output includes resources that are
37320
+ # managed by Amazon Web Services services, even if managed resource
37321
+ # visibility is set to hidden.
37322
+ #
37146
37323
  # @option params [Boolean] :dry_run
37147
37324
  # Checks whether you have the required permissions for the action,
37148
37325
  # without actually making the request, and provides an error response.
@@ -37357,6 +37534,7 @@ module Aws::EC2
37357
37534
  # resp = client.describe_network_interfaces({
37358
37535
  # next_token: "String",
37359
37536
  # max_results: 1,
37537
+ # include_managed_resources: false,
37360
37538
  # dry_run: false,
37361
37539
  # network_interface_ids: ["NetworkInterfaceId"],
37362
37540
  # filters: [
@@ -37441,6 +37619,7 @@ module Aws::EC2
37441
37619
  # resp.network_interfaces[0].ipv_6_address #=> String
37442
37620
  # resp.network_interfaces[0].operator.managed #=> Boolean
37443
37621
  # resp.network_interfaces[0].operator.principal #=> String
37622
+ # resp.network_interfaces[0].operator.hidden_by_default #=> Boolean
37444
37623
  # resp.network_interfaces[0].associated_subnets #=> Array
37445
37624
  # resp.network_interfaces[0].associated_subnets[0] #=> String
37446
37625
  # resp.network_interfaces[0].availability_zone_id #=> String
@@ -37657,6 +37836,7 @@ module Aws::EC2
37657
37836
  # resp.placement_groups[0].linked_group_id #=> String
37658
37837
  # resp.placement_groups[0].operator.managed #=> Boolean
37659
37838
  # resp.placement_groups[0].operator.principal #=> String
37839
+ # resp.placement_groups[0].operator.hidden_by_default #=> Boolean
37660
37840
  #
37661
37841
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribePlacementGroups AWS API Documentation
37662
37842
  #
@@ -43193,7 +43373,7 @@ module Aws::EC2
43193
43373
  # resp.transit_gateway_attachments[0].transit_gateway_id #=> String
43194
43374
  # resp.transit_gateway_attachments[0].transit_gateway_owner_id #=> String
43195
43375
  # resp.transit_gateway_attachments[0].resource_owner_id #=> String
43196
- # resp.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
43376
+ # resp.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
43197
43377
  # resp.transit_gateway_attachments[0].resource_id #=> String
43198
43378
  # resp.transit_gateway_attachments[0].state #=> String, one of "initiating", "initiatingRequest", "pendingAcceptance", "rollingBack", "pending", "available", "modifying", "deleting", "deleted", "failed", "rejected", "rejecting", "failing"
43199
43379
  # resp.transit_gateway_attachments[0].association.transit_gateway_route_table_id #=> String
@@ -44695,6 +44875,12 @@ module Aws::EC2
44695
44875
  #
44696
44876
  # Default: Describes all your volumes.
44697
44877
  #
44878
+ # @option params [Boolean] :include_managed_resources
44879
+ # Indicates whether to include managed resources in the output. If this
44880
+ # parameter is set to `true`, the output includes resources that are
44881
+ # managed by Amazon Web Services services, even if managed resource
44882
+ # visibility is set to hidden.
44883
+ #
44698
44884
  # @option params [Boolean] :dry_run
44699
44885
  # Checks whether you have the required permissions for the action,
44700
44886
  # without actually making the request, and provides an error response.
@@ -44809,6 +44995,7 @@ module Aws::EC2
44809
44995
  # max_results: 1,
44810
44996
  # next_token: "String",
44811
44997
  # volume_ids: ["VolumeId"],
44998
+ # include_managed_resources: false,
44812
44999
  # dry_run: false,
44813
45000
  # filters: [
44814
45001
  # {
@@ -44848,6 +45035,9 @@ module Aws::EC2
44848
45035
  # resp.volume_statuses[0].initialization_status_details.progress #=> Integer
44849
45036
  # resp.volume_statuses[0].initialization_status_details.estimated_time_to_complete_in_seconds #=> Integer
44850
45037
  # resp.volume_statuses[0].availability_zone_id #=> String
45038
+ # resp.volume_statuses[0].operator.managed #=> Boolean
45039
+ # resp.volume_statuses[0].operator.principal #=> String
45040
+ # resp.volume_statuses[0].operator.hidden_by_default #=> Boolean
44851
45041
  #
44852
45042
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumeStatus AWS API Documentation
44853
45043
  #
@@ -44885,6 +45075,12 @@ module Aws::EC2
44885
45075
  # The volume IDs. If not specified, then all volumes are included in the
44886
45076
  # response.
44887
45077
  #
45078
+ # @option params [Boolean] :include_managed_resources
45079
+ # Indicates whether to include managed resources in the output. If this
45080
+ # parameter is set to `true`, the output includes resources that are
45081
+ # managed by Amazon Web Services services, even if managed resource
45082
+ # visibility is set to hidden.
45083
+ #
44888
45084
  # @option params [Boolean] :dry_run
44889
45085
  # Checks whether you have the required permissions for the action,
44890
45086
  # without actually making the request, and provides an error response.
@@ -45060,6 +45256,7 @@ module Aws::EC2
45060
45256
  #
45061
45257
  # resp = client.describe_volumes({
45062
45258
  # volume_ids: ["VolumeId"],
45259
+ # include_managed_resources: false,
45063
45260
  # dry_run: false,
45064
45261
  # filters: [
45065
45262
  # {
@@ -45089,6 +45286,7 @@ module Aws::EC2
45089
45286
  # resp.volumes[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
45090
45287
  # resp.volumes[0].operator.managed #=> Boolean
45091
45288
  # resp.volumes[0].operator.principal #=> String
45289
+ # resp.volumes[0].operator.hidden_by_default #=> Boolean
45092
45290
  # resp.volumes[0].volume_initialization_rate #=> Integer
45093
45291
  # resp.volumes[0].volume_id #=> String
45094
45292
  # resp.volumes[0].size #=> Integer
@@ -45228,6 +45426,9 @@ module Aws::EC2
45228
45426
  # resp.volumes_modifications[0].progress #=> Integer
45229
45427
  # resp.volumes_modifications[0].start_time #=> Time
45230
45428
  # resp.volumes_modifications[0].end_time #=> Time
45429
+ # resp.volumes_modifications[0].operator.managed #=> Boolean
45430
+ # resp.volumes_modifications[0].operator.principal #=> String
45431
+ # resp.volumes_modifications[0].operator.hidden_by_default #=> Boolean
45231
45432
  #
45232
45433
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModifications AWS API Documentation
45233
45434
  #
@@ -48395,7 +48596,7 @@ module Aws::EC2
48395
48596
  #
48396
48597
  # resp.propagation.transit_gateway_attachment_id #=> String
48397
48598
  # resp.propagation.resource_id #=> String
48398
- # resp.propagation.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
48599
+ # resp.propagation.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
48399
48600
  # resp.propagation.transit_gateway_route_table_id #=> String
48400
48601
  # resp.propagation.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
48401
48602
  # resp.propagation.transit_gateway_route_table_announcement_id #=> String
@@ -49254,7 +49455,7 @@ module Aws::EC2
49254
49455
  # resp.associations.transit_gateway_multicast_domain_id #=> String
49255
49456
  # resp.associations.transit_gateway_attachment_id #=> String
49256
49457
  # resp.associations.resource_id #=> String
49257
- # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
49458
+ # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
49258
49459
  # resp.associations.resource_owner_id #=> String
49259
49460
  # resp.associations.subnets #=> Array
49260
49461
  # resp.associations.subnets[0].subnet_id #=> String
@@ -49301,7 +49502,7 @@ module Aws::EC2
49301
49502
  # resp.association.transit_gateway_policy_table_id #=> String
49302
49503
  # resp.association.transit_gateway_attachment_id #=> String
49303
49504
  # resp.association.resource_id #=> String
49304
- # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
49505
+ # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
49305
49506
  # resp.association.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
49306
49507
  #
49307
49508
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateTransitGatewayPolicyTable AWS API Documentation
@@ -49345,7 +49546,7 @@ module Aws::EC2
49345
49546
  # resp.association.transit_gateway_route_table_id #=> String
49346
49547
  # resp.association.transit_gateway_attachment_id #=> String
49347
49548
  # resp.association.resource_id #=> String
49348
- # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
49549
+ # resp.association.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
49349
49550
  # resp.association.state #=> String, one of "associating", "associated", "disassociating", "disassociated"
49350
49551
  #
49351
49552
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisassociateTransitGatewayRouteTable AWS API Documentation
@@ -50253,16 +50454,16 @@ module Aws::EC2
50253
50454
  # The ID of the IPAM policy to enable.
50254
50455
  #
50255
50456
  # @option params [String] :organization_target_id
50457
+ # A target can be an individual Amazon Web Services account or an entity
50458
+ # within an Amazon Web Services Organization to which an IPAM policy can
50459
+ # be applied.
50460
+ #
50256
50461
  # The ID of the Amazon Web Services Organizations target for which to
50257
50462
  # enable the IPAM policy. This parameter is required only when IPAM is
50258
50463
  # integrated with Amazon Web Services Organizations. When IPAM is not
50259
50464
  # integrated with Amazon Web Services Organizations, omit this parameter
50260
50465
  # and the policy will apply to the current account.
50261
50466
  #
50262
- # A target can be an individual Amazon Web Services account or an entity
50263
- # within an Amazon Web Services Organization to which an IPAM policy can
50264
- # be applied.
50265
- #
50266
50467
  # @return [Types::EnableIpamPolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
50267
50468
  #
50268
50469
  # * {Types::EnableIpamPolicyResult#ipam_policy_id #ipam_policy_id} => String
@@ -50522,7 +50723,7 @@ module Aws::EC2
50522
50723
  #
50523
50724
  # resp.propagation.transit_gateway_attachment_id #=> String
50524
50725
  # resp.propagation.resource_id #=> String
50525
- # resp.propagation.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
50726
+ # resp.propagation.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
50526
50727
  # resp.propagation.transit_gateway_route_table_id #=> String
50527
50728
  # resp.propagation.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
50528
50729
  # resp.propagation.transit_gateway_route_table_announcement_id #=> String
@@ -53969,6 +54170,7 @@ module Aws::EC2
53969
54170
  # resp.launch_template_data.disable_api_stop #=> Boolean
53970
54171
  # resp.launch_template_data.operator.managed #=> Boolean
53971
54172
  # resp.launch_template_data.operator.principal #=> String
54173
+ # resp.launch_template_data.operator.hidden_by_default #=> Boolean
53972
54174
  # resp.launch_template_data.network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
53973
54175
  # resp.launch_template_data.secondary_interfaces #=> Array
53974
54176
  # resp.launch_template_data.secondary_interfaces[0].delete_on_termination #=> Boolean
@@ -54098,6 +54300,39 @@ module Aws::EC2
54098
54300
  req.send_request(options)
54099
54301
  end
54100
54302
 
54303
+ # Retrieves the managed resource visibility configuration for the
54304
+ # account. The response indicates whether managed resources are hidden
54305
+ # or visible by default.
54306
+ #
54307
+ # @option params [Boolean] :dry_run
54308
+ # Checks whether you have the required permissions for the operation,
54309
+ # without actually making the request, and provides an error response.
54310
+ # If you have the required permissions, the error response is
54311
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
54312
+ #
54313
+ # @return [Types::GetManagedResourceVisibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
54314
+ #
54315
+ # * {Types::GetManagedResourceVisibilityResult#visibility #visibility} => Types::ManagedResourceVisibilitySettings
54316
+ #
54317
+ # @example Request syntax with placeholder values
54318
+ #
54319
+ # resp = client.get_managed_resource_visibility({
54320
+ # dry_run: false,
54321
+ # })
54322
+ #
54323
+ # @example Response structure
54324
+ #
54325
+ # resp.visibility.default_visibility #=> String, one of "hidden", "visible"
54326
+ #
54327
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetManagedResourceVisibility AWS API Documentation
54328
+ #
54329
+ # @overload get_managed_resource_visibility(params = {})
54330
+ # @param [Hash] params ({})
54331
+ def get_managed_resource_visibility(params = {}, options = {})
54332
+ req = build_request(:get_managed_resource_visibility, params)
54333
+ req.send_request(options)
54334
+ end
54335
+
54101
54336
  # Gets the findings for the specified Network Access Scope analysis.
54102
54337
  #
54103
54338
  # @option params [required, String] :network_insights_access_scope_analysis_id
@@ -55515,11 +55750,11 @@ module Aws::EC2
55515
55750
  # resp.transit_gateway_metering_policy_entries[0].updated_at #=> Time
55516
55751
  # resp.transit_gateway_metering_policy_entries[0].update_effective_at #=> Time
55517
55752
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.source_transit_gateway_attachment_id #=> String
55518
- # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.source_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
55753
+ # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.source_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55519
55754
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.source_cidr_block #=> String
55520
55755
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.source_port_range #=> String
55521
55756
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.destination_transit_gateway_attachment_id #=> String
55522
- # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.destination_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
55757
+ # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.destination_transit_gateway_attachment_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55523
55758
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.destination_cidr_block #=> String
55524
55759
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.destination_port_range #=> String
55525
55760
  # resp.transit_gateway_metering_policy_entries[0].metering_policy_rule.protocol #=> String
@@ -55597,7 +55832,7 @@ module Aws::EC2
55597
55832
  # resp.multicast_domain_associations #=> Array
55598
55833
  # resp.multicast_domain_associations[0].transit_gateway_attachment_id #=> String
55599
55834
  # resp.multicast_domain_associations[0].resource_id #=> String
55600
- # resp.multicast_domain_associations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
55835
+ # resp.multicast_domain_associations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55601
55836
  # resp.multicast_domain_associations[0].resource_owner_id #=> String
55602
55837
  # resp.multicast_domain_associations[0].subnet.subnet_id #=> String
55603
55838
  # resp.multicast_domain_associations[0].subnet.state #=> String, one of "pendingAcceptance", "associating", "associated", "disassociating", "disassociated", "rejected", "failed"
@@ -55662,7 +55897,7 @@ module Aws::EC2
55662
55897
  # resp.associations[0].transit_gateway_policy_table_id #=> String
55663
55898
  # resp.associations[0].transit_gateway_attachment_id #=> String
55664
55899
  # resp.associations[0].resource_id #=> String
55665
- # resp.associations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
55900
+ # resp.associations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55666
55901
  # resp.associations[0].state #=> String, one of "associating", "associated", "disassociating", "disassociated"
55667
55902
  # resp.next_token #=> String
55668
55903
  #
@@ -55812,7 +56047,7 @@ module Aws::EC2
55812
56047
  # resp.transit_gateway_prefix_list_references[0].state #=> String, one of "pending", "available", "modifying", "deleting"
55813
56048
  # resp.transit_gateway_prefix_list_references[0].blackhole #=> Boolean
55814
56049
  # resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.transit_gateway_attachment_id #=> String
55815
- # resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
56050
+ # resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55816
56051
  # resp.transit_gateway_prefix_list_references[0].transit_gateway_attachment.resource_id #=> String
55817
56052
  # resp.next_token #=> String
55818
56053
  #
@@ -55882,7 +56117,7 @@ module Aws::EC2
55882
56117
  # resp.associations #=> Array
55883
56118
  # resp.associations[0].transit_gateway_attachment_id #=> String
55884
56119
  # resp.associations[0].resource_id #=> String
55885
- # resp.associations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
56120
+ # resp.associations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55886
56121
  # resp.associations[0].state #=> String, one of "associating", "associated", "disassociating", "disassociated"
55887
56122
  # resp.next_token #=> String
55888
56123
  #
@@ -55952,7 +56187,7 @@ module Aws::EC2
55952
56187
  # resp.transit_gateway_route_table_propagations #=> Array
55953
56188
  # resp.transit_gateway_route_table_propagations[0].transit_gateway_attachment_id #=> String
55954
56189
  # resp.transit_gateway_route_table_propagations[0].resource_id #=> String
55955
- # resp.transit_gateway_route_table_propagations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
56190
+ # resp.transit_gateway_route_table_propagations[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
55956
56191
  # resp.transit_gateway_route_table_propagations[0].state #=> String, one of "enabling", "enabled", "disabling", "disabled"
55957
56192
  # resp.transit_gateway_route_table_propagations[0].transit_gateway_route_table_announcement_id #=> String
55958
56193
  # resp.next_token #=> String
@@ -57305,6 +57540,7 @@ module Aws::EC2
57305
57540
  # resp.volumes[0].snapshot_id #=> String
57306
57541
  # resp.volumes[0].operator.managed #=> Boolean
57307
57542
  # resp.volumes[0].operator.principal #=> String
57543
+ # resp.volumes[0].operator.hidden_by_default #=> Boolean
57308
57544
  # resp.volumes[0].create_time #=> Time
57309
57545
  # resp.volumes[0].recycle_bin_enter_time #=> Time
57310
57546
  # resp.volumes[0].recycle_bin_exit_time #=> Time
@@ -57849,6 +58085,10 @@ module Aws::EC2
57849
58085
  # `true`, users are prompted to reconnect client VPN. If `false`, client
57850
58086
  # VPN attempts to reconnect automatically. The default value is `true`.
57851
58087
  #
58088
+ # @option params [Types::TransitGatewayConfigurationInputStructure] :transit_gateway_configuration
58089
+ # The Transit Gateway configuration for the Client VPN endpoint. This
58090
+ # option is currently not supported.
58091
+ #
57852
58092
  # @return [Types::ModifyClientVpnEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
57853
58093
  #
57854
58094
  # * {Types::ModifyClientVpnEndpointResult#return #return} => Boolean
@@ -57887,6 +58127,11 @@ module Aws::EC2
57887
58127
  # enforced: false,
57888
58128
  # },
57889
58129
  # disconnect_on_session_timeout: false,
58130
+ # transit_gateway_configuration: {
58131
+ # transit_gateway_id: "TransitGatewayId",
58132
+ # availability_zones: ["AvailabilityZoneName"],
58133
+ # availability_zone_ids: ["AvailabilityZoneId"],
58134
+ # },
57890
58135
  # })
57891
58136
  #
57892
58137
  # @example Response structure
@@ -58943,7 +59188,7 @@ module Aws::EC2
58943
59188
  # dry_run: false,
58944
59189
  # instance_id: "InstanceId", # required
58945
59190
  # attribute: "instanceType", # accepts instanceType, kernel, ramdisk, userData, disableApiTermination, instanceInitiatedShutdownBehavior, rootDeviceName, blockDeviceMapping, productCodes, sourceDestCheck, groupSet, ebsOptimized, sriovNetSupport, enaSupport, enclaveOptions, disableApiStop
58946
- # value: "String",
59191
+ # value: "ModifyInstanceAttributeValue",
58947
59192
  # block_device_mappings: [
58948
59193
  # {
58949
59194
  # device_name: "String",
@@ -60725,6 +60970,7 @@ module Aws::EC2
60725
60970
  # resp.launch_template.tags[0].value #=> String
60726
60971
  # resp.launch_template.operator.managed #=> Boolean
60727
60972
  # resp.launch_template.operator.principal #=> String
60973
+ # resp.launch_template.operator.hidden_by_default #=> Boolean
60728
60974
  #
60729
60975
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLaunchTemplate AWS API Documentation
60730
60976
  #
@@ -60897,6 +61143,46 @@ module Aws::EC2
60897
61143
  req.send_request(options)
60898
61144
  end
60899
61145
 
61146
+ # Modifies the managed resource visibility configuration for the
61147
+ # account. Use this operation to control whether managed resources are
61148
+ # hidden or visible by default. Visibility settings are account-wide and
61149
+ # affect all IAM principals uniformly. Hidden resources remain fully
61150
+ # operational and billable.
61151
+ #
61152
+ # @option params [Boolean] :dry_run
61153
+ # Checks whether you have the required permissions for the operation,
61154
+ # without actually making the request, and provides an error response.
61155
+ # If you have the required permissions, the error response is
61156
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
61157
+ #
61158
+ # @option params [String] :default_visibility
61159
+ # The default visibility setting for managed resources. Valid values:
61160
+ # `hidden` \| `visible`.
61161
+ #
61162
+ # @return [Types::ModifyManagedResourceVisibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
61163
+ #
61164
+ # * {Types::ModifyManagedResourceVisibilityResult#visibility #visibility} => Types::ManagedResourceVisibilitySettings
61165
+ #
61166
+ # @example Request syntax with placeholder values
61167
+ #
61168
+ # resp = client.modify_managed_resource_visibility({
61169
+ # dry_run: false,
61170
+ # default_visibility: "hidden", # accepts hidden, visible
61171
+ # })
61172
+ #
61173
+ # @example Response structure
61174
+ #
61175
+ # resp.visibility.default_visibility #=> String, one of "hidden", "visible"
61176
+ #
61177
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyManagedResourceVisibility AWS API Documentation
61178
+ #
61179
+ # @overload modify_managed_resource_visibility(params = {})
61180
+ # @param [Hash] params ({})
61181
+ def modify_managed_resource_visibility(params = {}, options = {})
61182
+ req = build_request(:modify_managed_resource_visibility, params)
61183
+ req.send_request(options)
61184
+ end
61185
+
60900
61186
  # Modifies the specified network interface attribute. You can specify
60901
61187
  # only one attribute at a time. You can use this action to attach and
60902
61188
  # detach security groups from an existing EC2 instance.
@@ -62387,7 +62673,7 @@ module Aws::EC2
62387
62673
  # resp.transit_gateway_prefix_list_reference.state #=> String, one of "pending", "available", "modifying", "deleting"
62388
62674
  # resp.transit_gateway_prefix_list_reference.blackhole #=> Boolean
62389
62675
  # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.transit_gateway_attachment_id #=> String
62390
- # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
62676
+ # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
62391
62677
  # resp.transit_gateway_prefix_list_reference.transit_gateway_attachment.resource_id #=> String
62392
62678
  #
62393
62679
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyTransitGatewayPrefixListReference AWS API Documentation
@@ -63260,6 +63546,9 @@ module Aws::EC2
63260
63546
  # resp.volume_modification.progress #=> Integer
63261
63547
  # resp.volume_modification.start_time #=> Time
63262
63548
  # resp.volume_modification.end_time #=> Time
63549
+ # resp.volume_modification.operator.managed #=> Boolean
63550
+ # resp.volume_modification.operator.principal #=> String
63551
+ # resp.volume_modification.operator.hidden_by_default #=> Boolean
63263
63552
  #
63264
63553
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVolume AWS API Documentation
63265
63554
  #
@@ -66398,6 +66687,49 @@ module Aws::EC2
66398
66687
  req.send_request(options)
66399
66688
  end
66400
66689
 
66690
+ # Rejects a Transit Gateway attachment request for a Client VPN
66691
+ # endpoint. The Transit Gateway owner can reject the attachment request
66692
+ # to prevent the Client VPN endpoint from routing traffic through the
66693
+ # Transit Gateway.
66694
+ #
66695
+ # @option params [required, String] :transit_gateway_attachment_id
66696
+ # The ID of the Transit Gateway attachment.
66697
+ #
66698
+ # @option params [Boolean] :dry_run
66699
+ # Checks whether you have the required permissions for the action,
66700
+ # without actually making the request, and provides an error response.
66701
+ # If you have the required permissions, the error response is
66702
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
66703
+ #
66704
+ # @return [Types::RejectTransitGatewayClientVpnAttachmentResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
66705
+ #
66706
+ # * {Types::RejectTransitGatewayClientVpnAttachmentResult#transit_gateway_client_vpn_attachment #transit_gateway_client_vpn_attachment} => Types::TransitGatewayClientVpnAttachment
66707
+ #
66708
+ # @example Request syntax with placeholder values
66709
+ #
66710
+ # resp = client.reject_transit_gateway_client_vpn_attachment({
66711
+ # transit_gateway_attachment_id: "TransitGatewayAttachmentId", # required
66712
+ # dry_run: false,
66713
+ # })
66714
+ #
66715
+ # @example Response structure
66716
+ #
66717
+ # resp.transit_gateway_client_vpn_attachment.transit_gateway_attachment_id #=> String
66718
+ # resp.transit_gateway_client_vpn_attachment.transit_gateway_id #=> String
66719
+ # resp.transit_gateway_client_vpn_attachment.client_vpn_endpoint_id #=> String
66720
+ # resp.transit_gateway_client_vpn_attachment.client_vpn_owner_id #=> String
66721
+ # resp.transit_gateway_client_vpn_attachment.state #=> String, one of "pending-acceptance", "pending", "rejected", "available", "deleting", "deleted"
66722
+ # resp.transit_gateway_client_vpn_attachment.creation_time #=> String
66723
+ #
66724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RejectTransitGatewayClientVpnAttachment AWS API Documentation
66725
+ #
66726
+ # @overload reject_transit_gateway_client_vpn_attachment(params = {})
66727
+ # @param [Hash] params ({})
66728
+ def reject_transit_gateway_client_vpn_attachment(params = {}, options = {})
66729
+ req = build_request(:reject_transit_gateway_client_vpn_attachment, params)
66730
+ req.send_request(options)
66731
+ end
66732
+
66401
66733
  # Rejects a request to associate cross-account subnets with a transit
66402
66734
  # gateway multicast domain.
66403
66735
  #
@@ -66435,7 +66767,7 @@ module Aws::EC2
66435
66767
  # resp.associations.transit_gateway_multicast_domain_id #=> String
66436
66768
  # resp.associations.transit_gateway_attachment_id #=> String
66437
66769
  # resp.associations.resource_id #=> String
66438
- # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
66770
+ # resp.associations.resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
66439
66771
  # resp.associations.resource_owner_id #=> String
66440
66772
  # resp.associations.subnets #=> Array
66441
66773
  # resp.associations.subnets[0].subnet_id #=> String
@@ -67329,7 +67661,7 @@ module Aws::EC2
67329
67661
  # resp.route.transit_gateway_attachments #=> Array
67330
67662
  # resp.route.transit_gateway_attachments[0].resource_id #=> String
67331
67663
  # resp.route.transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
67332
- # resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
67664
+ # resp.route.transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
67333
67665
  # resp.route.type #=> String, one of "static", "propagated"
67334
67666
  # resp.route.state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
67335
67667
  #
@@ -70195,6 +70527,7 @@ module Aws::EC2
70195
70527
  # resp.instances[0].block_device_mappings[0].ebs.volume_owner_id #=> String
70196
70528
  # resp.instances[0].block_device_mappings[0].ebs.operator.managed #=> Boolean
70197
70529
  # resp.instances[0].block_device_mappings[0].ebs.operator.principal #=> String
70530
+ # resp.instances[0].block_device_mappings[0].ebs.operator.hidden_by_default #=> Boolean
70198
70531
  # resp.instances[0].block_device_mappings[0].ebs.ebs_card_index #=> Integer
70199
70532
  # resp.instances[0].client_token #=> String
70200
70533
  # resp.instances[0].ebs_optimized #=> Boolean
@@ -70263,6 +70596,7 @@ module Aws::EC2
70263
70596
  # resp.instances[0].network_interfaces[0].connection_tracking_configuration.udp_timeout #=> Integer
70264
70597
  # resp.instances[0].network_interfaces[0].operator.managed #=> Boolean
70265
70598
  # resp.instances[0].network_interfaces[0].operator.principal #=> String
70599
+ # resp.instances[0].network_interfaces[0].operator.hidden_by_default #=> Boolean
70266
70600
  # resp.instances[0].outpost_arn #=> String
70267
70601
  # resp.instances[0].root_device_name #=> String
70268
70602
  # resp.instances[0].root_device_type #=> String, one of "ebs", "instance-store"
@@ -70312,6 +70646,7 @@ module Aws::EC2
70312
70646
  # resp.instances[0].network_performance_options.bandwidth_weighting #=> String, one of "default", "vpc-1", "ebs-1"
70313
70647
  # resp.instances[0].operator.managed #=> Boolean
70314
70648
  # resp.instances[0].operator.principal #=> String
70649
+ # resp.instances[0].operator.hidden_by_default #=> Boolean
70315
70650
  # resp.instances[0].secondary_interfaces #=> Array
70316
70651
  # resp.instances[0].secondary_interfaces[0].attachment.attach_time #=> Time
70317
70652
  # resp.instances[0].secondary_interfaces[0].attachment.attachment_id #=> String
@@ -70668,7 +71003,7 @@ module Aws::EC2
70668
71003
  # resp.multicast_groups[0].transit_gateway_attachment_id #=> String
70669
71004
  # resp.multicast_groups[0].subnet_id #=> String
70670
71005
  # resp.multicast_groups[0].resource_id #=> String
70671
- # resp.multicast_groups[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
71006
+ # resp.multicast_groups[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
70672
71007
  # resp.multicast_groups[0].resource_owner_id #=> String
70673
71008
  # resp.multicast_groups[0].network_interface_id #=> String
70674
71009
  # resp.multicast_groups[0].group_member #=> Boolean
@@ -70770,7 +71105,7 @@ module Aws::EC2
70770
71105
  # resp.routes[0].transit_gateway_attachments #=> Array
70771
71106
  # resp.routes[0].transit_gateway_attachments[0].resource_id #=> String
70772
71107
  # resp.routes[0].transit_gateway_attachments[0].transit_gateway_attachment_id #=> String
70773
- # resp.routes[0].transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function"
71108
+ # resp.routes[0].transit_gateway_attachments[0].resource_type #=> String, one of "vpc", "vpn", "vpn-concentrator", "direct-connect-gateway", "connect", "peering", "tgw-peering", "network-function", "client-vpn"
70774
71109
  # resp.routes[0].type #=> String, one of "static", "propagated"
70775
71110
  # resp.routes[0].state #=> String, one of "pending", "active", "blackhole", "deleting", "deleted"
70776
71111
  # resp.additional_routes_available #=> Boolean
@@ -73212,7 +73547,7 @@ module Aws::EC2
73212
73547
  tracer: tracer
73213
73548
  )
73214
73549
  context[:gem_name] = 'aws-sdk-ec2'
73215
- context[:gem_version] = '1.611.0'
73550
+ context[:gem_version] = '1.613.0'
73216
73551
  Seahorse::Client::Request.new(handlers, context)
73217
73552
  end
73218
73553