@aws-sdk/client-ec2 3.174.0 → 3.175.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.
Files changed (52) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/CreateDefaultVpcCommand.js +2 -1
  3. package/dist-cjs/commands/CreateDhcpOptionsCommand.js +1 -2
  4. package/dist-cjs/commands/CreateTrafficMirrorFilterCommand.js +2 -1
  5. package/dist-cjs/commands/DescribeAddressesCommand.js +3 -3
  6. package/dist-cjs/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +1 -2
  7. package/dist-cjs/commands/DescribeLocalGatewaysCommand.js +2 -1
  8. package/dist-cjs/models/models_0.js +18 -18
  9. package/dist-cjs/models/models_1.js +17 -17
  10. package/dist-cjs/models/models_2.js +18 -18
  11. package/dist-cjs/models/models_3.js +17 -17
  12. package/dist-cjs/models/models_4.js +13 -13
  13. package/dist-cjs/protocols/Aws_ec2.js +23 -0
  14. package/dist-es/commands/CreateDefaultVpcCommand.js +2 -1
  15. package/dist-es/commands/CreateDhcpOptionsCommand.js +1 -2
  16. package/dist-es/commands/CreateTrafficMirrorFilterCommand.js +2 -1
  17. package/dist-es/commands/DescribeAddressesCommand.js +1 -1
  18. package/dist-es/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.js +1 -2
  19. package/dist-es/commands/DescribeLocalGatewaysCommand.js +2 -1
  20. package/dist-es/models/models_0.js +4 -4
  21. package/dist-es/models/models_1.js +3 -6
  22. package/dist-es/models/models_2.js +6 -3
  23. package/dist-es/models/models_3.js +3 -3
  24. package/dist-es/models/models_4.js +3 -3
  25. package/dist-es/protocols/Aws_ec2.js +23 -0
  26. package/dist-types/commands/CreateDefaultVpcCommand.d.ts +2 -1
  27. package/dist-types/commands/CreateDhcpOptionsCommand.d.ts +1 -2
  28. package/dist-types/commands/CreateTrafficMirrorFilterCommand.d.ts +2 -1
  29. package/dist-types/commands/DescribeAddressesCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +1 -2
  31. package/dist-types/commands/DescribeLocalGatewaysCommand.d.ts +2 -1
  32. package/dist-types/models/models_0.d.ts +297 -61
  33. package/dist-types/models/models_1.d.ts +46 -49
  34. package/dist-types/models/models_2.d.ts +49 -105
  35. package/dist-types/models/models_3.d.ts +106 -90
  36. package/dist-types/models/models_4.d.ts +159 -276
  37. package/dist-types/models/models_5.d.ts +3 -3
  38. package/dist-types/models/models_6.d.ts +2 -2
  39. package/dist-types/ts3.4/commands/CreateDefaultVpcCommand.d.ts +2 -4
  40. package/dist-types/ts3.4/commands/CreateDhcpOptionsCommand.d.ts +4 -2
  41. package/dist-types/ts3.4/commands/CreateTrafficMirrorFilterCommand.d.ts +2 -4
  42. package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +1 -1
  43. package/dist-types/ts3.4/commands/DescribeLocalGatewayVirtualInterfaceGroupsCommand.d.ts +4 -2
  44. package/dist-types/ts3.4/commands/DescribeLocalGatewaysCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/models/models_0.d.ts +81 -29
  46. package/dist-types/ts3.4/models/models_1.d.ts +22 -21
  47. package/dist-types/ts3.4/models/models_2.d.ts +21 -21
  48. package/dist-types/ts3.4/models/models_3.d.ts +22 -30
  49. package/dist-types/ts3.4/models/models_4.d.ts +28 -76
  50. package/dist-types/ts3.4/models/models_5.d.ts +3 -3
  51. package/dist-types/ts3.4/models/models_6.d.ts +1 -1
  52. package/package.json +1 -1
@@ -703,30 +703,38 @@ export interface AdditionalDetail {
703
703
  Component?: AnalysisComponent;
704
704
  }
705
705
  /**
706
- * <p>Describes a header. Reflects any changes made by a component as traffic passes through.
707
- * The fields of an inbound header are null except for the first component of a path.</p>
706
+ * <p>Describes a load balancer listener.</p>
708
707
  */
709
- export interface AnalysisPacketHeader {
708
+ export interface AnalysisLoadBalancerListener {
710
709
  /**
711
- * <p>The destination addresses.</p>
710
+ * <p>The port on which the load balancer is listening.</p>
712
711
  */
713
- DestinationAddresses?: string[];
712
+ LoadBalancerPort?: number;
714
713
  /**
715
- * <p>The destination port ranges.</p>
714
+ * <p>[Classic Load Balancers] The back-end port for the listener.</p>
716
715
  */
717
- DestinationPortRanges?: PortRange[];
716
+ InstancePort?: number;
717
+ }
718
+ /**
719
+ * <p>Describes a load balancer target.</p>
720
+ */
721
+ export interface AnalysisLoadBalancerTarget {
718
722
  /**
719
- * <p>The protocol.</p>
723
+ * <p>The IP address.</p>
720
724
  */
721
- Protocol?: string;
725
+ Address?: string;
722
726
  /**
723
- * <p>The source addresses.</p>
727
+ * <p>The Availability Zone.</p>
724
728
  */
725
- SourceAddresses?: string[];
729
+ AvailabilityZone?: string;
726
730
  /**
727
- * <p>The source port ranges.</p>
731
+ * <p>Information about the instance.</p>
728
732
  */
729
- SourcePortRanges?: PortRange[];
733
+ Instance?: AnalysisComponent;
734
+ /**
735
+ * <p>The port on which the target is listening.</p>
736
+ */
737
+ Port?: number;
730
738
  }
731
739
  /**
732
740
  * <p>Describes a route table route.</p>
@@ -783,6 +791,18 @@ export interface AnalysisRouteTableRoute {
783
791
  * <p>The ID of a VPC peering connection.</p>
784
792
  */
785
793
  VpcPeeringConnectionId?: string;
794
+ /**
795
+ * <p>The state. The following are the possible values:</p>
796
+ * <ul>
797
+ * <li>
798
+ * <p>active</p>
799
+ * </li>
800
+ * <li>
801
+ * <p>blackhole</p>
802
+ * </li>
803
+ * </ul>
804
+ */
805
+ State?: string;
786
806
  }
787
807
  /**
788
808
  * <p>Describes a security group rule.</p>
@@ -862,6 +882,249 @@ export interface TransitGatewayRouteTableRoute {
862
882
  */
863
883
  ResourceType?: string;
864
884
  }
885
+ /**
886
+ * <p>Describes an explanation code for an unreachable path. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/reachability/explanation-codes.html">Reachability Analyzer explanation codes</a>.</p>
887
+ */
888
+ export interface Explanation {
889
+ /**
890
+ * <p>The network ACL.</p>
891
+ */
892
+ Acl?: AnalysisComponent;
893
+ /**
894
+ * <p>The network ACL rule.</p>
895
+ */
896
+ AclRule?: AnalysisAclRule;
897
+ /**
898
+ * <p>The IPv4 address, in CIDR notation.</p>
899
+ */
900
+ Address?: string;
901
+ /**
902
+ * <p>The IPv4 addresses, in CIDR notation.</p>
903
+ */
904
+ Addresses?: string[];
905
+ /**
906
+ * <p>The resource to which the component is attached.</p>
907
+ */
908
+ AttachedTo?: AnalysisComponent;
909
+ /**
910
+ * <p>The Availability Zones.</p>
911
+ */
912
+ AvailabilityZones?: string[];
913
+ /**
914
+ * <p>The CIDR ranges.</p>
915
+ */
916
+ Cidrs?: string[];
917
+ /**
918
+ * <p>The component.</p>
919
+ */
920
+ Component?: AnalysisComponent;
921
+ /**
922
+ * <p>The customer gateway.</p>
923
+ */
924
+ CustomerGateway?: AnalysisComponent;
925
+ /**
926
+ * <p>The destination.</p>
927
+ */
928
+ Destination?: AnalysisComponent;
929
+ /**
930
+ * <p>The destination VPC.</p>
931
+ */
932
+ DestinationVpc?: AnalysisComponent;
933
+ /**
934
+ * <p>The direction. The following are the possible values:</p>
935
+ * <ul>
936
+ * <li>
937
+ * <p>egress</p>
938
+ * </li>
939
+ * <li>
940
+ * <p>ingress</p>
941
+ * </li>
942
+ * </ul>
943
+ */
944
+ Direction?: string;
945
+ /**
946
+ * <p>The explanation code.</p>
947
+ */
948
+ ExplanationCode?: string;
949
+ /**
950
+ * <p>The route table.</p>
951
+ */
952
+ IngressRouteTable?: AnalysisComponent;
953
+ /**
954
+ * <p>The internet gateway.</p>
955
+ */
956
+ InternetGateway?: AnalysisComponent;
957
+ /**
958
+ * <p>The Amazon Resource Name (ARN) of the load balancer.</p>
959
+ */
960
+ LoadBalancerArn?: string;
961
+ /**
962
+ * <p>The listener for a Classic Load Balancer.</p>
963
+ */
964
+ ClassicLoadBalancerListener?: AnalysisLoadBalancerListener;
965
+ /**
966
+ * <p>The listener port of the load balancer.</p>
967
+ */
968
+ LoadBalancerListenerPort?: number;
969
+ /**
970
+ * <p>The target.</p>
971
+ */
972
+ LoadBalancerTarget?: AnalysisLoadBalancerTarget;
973
+ /**
974
+ * <p>The target group.</p>
975
+ */
976
+ LoadBalancerTargetGroup?: AnalysisComponent;
977
+ /**
978
+ * <p>The target groups.</p>
979
+ */
980
+ LoadBalancerTargetGroups?: AnalysisComponent[];
981
+ /**
982
+ * <p>The target port.</p>
983
+ */
984
+ LoadBalancerTargetPort?: number;
985
+ /**
986
+ * <p>The load balancer listener.</p>
987
+ */
988
+ ElasticLoadBalancerListener?: AnalysisComponent;
989
+ /**
990
+ * <p>The missing component.</p>
991
+ */
992
+ MissingComponent?: string;
993
+ /**
994
+ * <p>The NAT gateway.</p>
995
+ */
996
+ NatGateway?: AnalysisComponent;
997
+ /**
998
+ * <p>The network interface.</p>
999
+ */
1000
+ NetworkInterface?: AnalysisComponent;
1001
+ /**
1002
+ * <p>The packet field.</p>
1003
+ */
1004
+ PacketField?: string;
1005
+ /**
1006
+ * <p>The VPC peering connection.</p>
1007
+ */
1008
+ VpcPeeringConnection?: AnalysisComponent;
1009
+ /**
1010
+ * <p>The port.</p>
1011
+ */
1012
+ Port?: number;
1013
+ /**
1014
+ * <p>The port ranges.</p>
1015
+ */
1016
+ PortRanges?: PortRange[];
1017
+ /**
1018
+ * <p>The prefix list.</p>
1019
+ */
1020
+ PrefixList?: AnalysisComponent;
1021
+ /**
1022
+ * <p>The protocols.</p>
1023
+ */
1024
+ Protocols?: string[];
1025
+ /**
1026
+ * <p>The route table route.</p>
1027
+ */
1028
+ RouteTableRoute?: AnalysisRouteTableRoute;
1029
+ /**
1030
+ * <p>The route table.</p>
1031
+ */
1032
+ RouteTable?: AnalysisComponent;
1033
+ /**
1034
+ * <p>The security group.</p>
1035
+ */
1036
+ SecurityGroup?: AnalysisComponent;
1037
+ /**
1038
+ * <p>The security group rule.</p>
1039
+ */
1040
+ SecurityGroupRule?: AnalysisSecurityGroupRule;
1041
+ /**
1042
+ * <p>The security groups.</p>
1043
+ */
1044
+ SecurityGroups?: AnalysisComponent[];
1045
+ /**
1046
+ * <p>The source VPC.</p>
1047
+ */
1048
+ SourceVpc?: AnalysisComponent;
1049
+ /**
1050
+ * <p>The state.</p>
1051
+ */
1052
+ State?: string;
1053
+ /**
1054
+ * <p>The subnet.</p>
1055
+ */
1056
+ Subnet?: AnalysisComponent;
1057
+ /**
1058
+ * <p>The route table for the subnet.</p>
1059
+ */
1060
+ SubnetRouteTable?: AnalysisComponent;
1061
+ /**
1062
+ * <p>The component VPC.</p>
1063
+ */
1064
+ Vpc?: AnalysisComponent;
1065
+ /**
1066
+ * <p>The VPC endpoint.</p>
1067
+ */
1068
+ VpcEndpoint?: AnalysisComponent;
1069
+ /**
1070
+ * <p>The VPN connection.</p>
1071
+ */
1072
+ VpnConnection?: AnalysisComponent;
1073
+ /**
1074
+ * <p>The VPN gateway.</p>
1075
+ */
1076
+ VpnGateway?: AnalysisComponent;
1077
+ /**
1078
+ * <p>The transit gateway.</p>
1079
+ */
1080
+ TransitGateway?: AnalysisComponent;
1081
+ /**
1082
+ * <p>The transit gateway route table.</p>
1083
+ */
1084
+ TransitGatewayRouteTable?: AnalysisComponent;
1085
+ /**
1086
+ * <p>The transit gateway route table route.</p>
1087
+ */
1088
+ TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
1089
+ /**
1090
+ * <p>The transit gateway attachment.</p>
1091
+ */
1092
+ TransitGatewayAttachment?: AnalysisComponent;
1093
+ /**
1094
+ * <p>The Amazon Web Services account for the component.</p>
1095
+ */
1096
+ ComponentAccount?: string;
1097
+ /**
1098
+ * <p>The Region for the component.</p>
1099
+ */
1100
+ ComponentRegion?: string;
1101
+ }
1102
+ /**
1103
+ * <p>Describes a header. Reflects any changes made by a component as traffic passes through.
1104
+ * The fields of an inbound header are null except for the first component of a path.</p>
1105
+ */
1106
+ export interface AnalysisPacketHeader {
1107
+ /**
1108
+ * <p>The destination addresses.</p>
1109
+ */
1110
+ DestinationAddresses?: string[];
1111
+ /**
1112
+ * <p>The destination port ranges.</p>
1113
+ */
1114
+ DestinationPortRanges?: PortRange[];
1115
+ /**
1116
+ * <p>The protocol.</p>
1117
+ */
1118
+ Protocol?: string;
1119
+ /**
1120
+ * <p>The source addresses.</p>
1121
+ */
1122
+ SourceAddresses?: string[];
1123
+ /**
1124
+ * <p>The source port ranges.</p>
1125
+ */
1126
+ SourcePortRanges?: PortRange[];
1127
+ }
865
1128
  /**
866
1129
  * <p>Describes a path component.</p>
867
1130
  */
@@ -926,6 +1189,14 @@ export interface PathComponent {
926
1189
  * <p>The route in a transit gateway route table.</p>
927
1190
  */
928
1191
  TransitGatewayRouteTableRoute?: TransitGatewayRouteTableRoute;
1192
+ /**
1193
+ * <p>The explanation codes.</p>
1194
+ */
1195
+ Explanations?: Explanation[];
1196
+ /**
1197
+ * <p>The load balancer listener.</p>
1198
+ */
1199
+ ElasticLoadBalancerListener?: AnalysisComponent;
929
1200
  }
930
1201
  /**
931
1202
  * <p>Describes a finding for a Network Access Scope.</p>
@@ -6127,41 +6398,6 @@ export interface Vpc {
6127
6398
  */
6128
6399
  Tags?: Tag[];
6129
6400
  }
6130
- export interface CreateDefaultVpcResult {
6131
- /**
6132
- * <p>Information about the VPC.</p>
6133
- */
6134
- Vpc?: Vpc;
6135
- }
6136
- /**
6137
- * <p>Describes a DHCP configuration option.</p>
6138
- */
6139
- export interface NewDhcpConfiguration {
6140
- /**
6141
- * <p>The name of a DHCP option.</p>
6142
- */
6143
- Key?: string;
6144
- /**
6145
- * <p>One or more values for the DHCP option.</p>
6146
- */
6147
- Values?: string[];
6148
- }
6149
- export interface CreateDhcpOptionsRequest {
6150
- /**
6151
- * <p>A DHCP configuration option.</p>
6152
- */
6153
- DhcpConfigurations: NewDhcpConfiguration[] | undefined;
6154
- /**
6155
- * <p>The tags to assign to the DHCP option.</p>
6156
- */
6157
- TagSpecifications?: TagSpecification[];
6158
- /**
6159
- * <p>Checks whether you have the required permissions for the action, without actually making the request,
6160
- * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
6161
- * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
6162
- */
6163
- DryRun?: boolean;
6164
- }
6165
6401
  /**
6166
6402
  * @internal
6167
6403
  */
@@ -6317,7 +6553,11 @@ export declare const AdditionalDetailFilterSensitiveLog: (obj: AdditionalDetail)
6317
6553
  /**
6318
6554
  * @internal
6319
6555
  */
6320
- export declare const AnalysisPacketHeaderFilterSensitiveLog: (obj: AnalysisPacketHeader) => any;
6556
+ export declare const AnalysisLoadBalancerListenerFilterSensitiveLog: (obj: AnalysisLoadBalancerListener) => any;
6557
+ /**
6558
+ * @internal
6559
+ */
6560
+ export declare const AnalysisLoadBalancerTargetFilterSensitiveLog: (obj: AnalysisLoadBalancerTarget) => any;
6321
6561
  /**
6322
6562
  * @internal
6323
6563
  */
@@ -6330,6 +6570,14 @@ export declare const AnalysisSecurityGroupRuleFilterSensitiveLog: (obj: Analysis
6330
6570
  * @internal
6331
6571
  */
6332
6572
  export declare const TransitGatewayRouteTableRouteFilterSensitiveLog: (obj: TransitGatewayRouteTableRoute) => any;
6573
+ /**
6574
+ * @internal
6575
+ */
6576
+ export declare const ExplanationFilterSensitiveLog: (obj: Explanation) => any;
6577
+ /**
6578
+ * @internal
6579
+ */
6580
+ export declare const AnalysisPacketHeaderFilterSensitiveLog: (obj: AnalysisPacketHeader) => any;
6333
6581
  /**
6334
6582
  * @internal
6335
6583
  */
@@ -7078,15 +7326,3 @@ export declare const CreateDefaultVpcRequestFilterSensitiveLog: (obj: CreateDefa
7078
7326
  * @internal
7079
7327
  */
7080
7328
  export declare const VpcFilterSensitiveLog: (obj: Vpc) => any;
7081
- /**
7082
- * @internal
7083
- */
7084
- export declare const CreateDefaultVpcResultFilterSensitiveLog: (obj: CreateDefaultVpcResult) => any;
7085
- /**
7086
- * @internal
7087
- */
7088
- export declare const NewDhcpConfigurationFilterSensitiveLog: (obj: NewDhcpConfiguration) => any;
7089
- /**
7090
- * @internal
7091
- */
7092
- export declare const CreateDhcpOptionsRequestFilterSensitiveLog: (obj: CreateDhcpOptionsRequest) => any;
@@ -1,4 +1,39 @@
1
- import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, CurrencyCodeValues, HostnameType, InstanceEventWindow, Ipv4PrefixSpecification, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, UnsuccessfulItem, WeekDay } from "./models_0";
1
+ import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, CurrencyCodeValues, HostnameType, InstanceEventWindow, Ipv4PrefixSpecification, PortRange, Protocol, ReservedInstancesListing, ResourceType, RouteTableAssociationState, Subnet, Tag, TagSpecification, Tenancy, UnsuccessfulItem, Vpc, WeekDay } from "./models_0";
2
+ export interface CreateDefaultVpcResult {
3
+ /**
4
+ * <p>Information about the VPC.</p>
5
+ */
6
+ Vpc?: Vpc;
7
+ }
8
+ /**
9
+ * <p>Describes a DHCP configuration option.</p>
10
+ */
11
+ export interface NewDhcpConfiguration {
12
+ /**
13
+ * <p>The name of a DHCP option.</p>
14
+ */
15
+ Key?: string;
16
+ /**
17
+ * <p>One or more values for the DHCP option.</p>
18
+ */
19
+ Values?: string[];
20
+ }
21
+ export interface CreateDhcpOptionsRequest {
22
+ /**
23
+ * <p>A DHCP configuration option.</p>
24
+ */
25
+ DhcpConfigurations: NewDhcpConfiguration[] | undefined;
26
+ /**
27
+ * <p>The tags to assign to the DHCP option.</p>
28
+ */
29
+ TagSpecifications?: TagSpecification[];
30
+ /**
31
+ * <p>Checks whether you have the required permissions for the action, without actually making the request,
32
+ * and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
33
+ * Otherwise, it is <code>UnauthorizedOperation</code>.</p>
34
+ */
35
+ DryRun?: boolean;
36
+ }
2
37
  /**
3
38
  * <p>Describes a value for a resource attribute that is a String.</p>
4
39
  */
@@ -7289,48 +7324,18 @@ export interface TrafficMirrorFilterRule {
7289
7324
  */
7290
7325
  Description?: string;
7291
7326
  }
7292
- export declare enum TrafficMirrorNetworkService {
7293
- amazon_dns = "amazon-dns"
7294
- }
7295
7327
  /**
7296
- * <p>Describes the Traffic Mirror filter.</p>
7328
+ * @internal
7297
7329
  */
7298
- export interface TrafficMirrorFilter {
7299
- /**
7300
- * <p>The ID of the Traffic Mirror filter.</p>
7301
- */
7302
- TrafficMirrorFilterId?: string;
7303
- /**
7304
- * <p>Information about the ingress rules that are associated with the Traffic Mirror filter.</p>
7305
- */
7306
- IngressFilterRules?: TrafficMirrorFilterRule[];
7307
- /**
7308
- * <p>Information about the egress rules that are associated with the Traffic Mirror filter.</p>
7309
- */
7310
- EgressFilterRules?: TrafficMirrorFilterRule[];
7311
- /**
7312
- * <p>The network service traffic that is associated with the Traffic Mirror filter.</p>
7313
- */
7314
- NetworkServices?: (TrafficMirrorNetworkService | string)[];
7315
- /**
7316
- * <p>The description of the Traffic Mirror filter.</p>
7317
- */
7318
- Description?: string;
7319
- /**
7320
- * <p>The tags assigned to the Traffic Mirror filter.</p>
7321
- */
7322
- Tags?: Tag[];
7323
- }
7324
- export interface CreateTrafficMirrorFilterResult {
7325
- /**
7326
- * <p>Information about the Traffic Mirror filter.</p>
7327
- */
7328
- TrafficMirrorFilter?: TrafficMirrorFilter;
7329
- /**
7330
- * <p>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html">How to ensure idempotency</a>.</p>
7331
- */
7332
- ClientToken?: string;
7333
- }
7330
+ export declare const CreateDefaultVpcResultFilterSensitiveLog: (obj: CreateDefaultVpcResult) => any;
7331
+ /**
7332
+ * @internal
7333
+ */
7334
+ export declare const NewDhcpConfigurationFilterSensitiveLog: (obj: NewDhcpConfiguration) => any;
7335
+ /**
7336
+ * @internal
7337
+ */
7338
+ export declare const CreateDhcpOptionsRequestFilterSensitiveLog: (obj: CreateDhcpOptionsRequest) => any;
7334
7339
  /**
7335
7340
  * @internal
7336
7341
  */
@@ -8243,11 +8248,3 @@ export declare const TrafficMirrorPortRangeFilterSensitiveLog: (obj: TrafficMirr
8243
8248
  * @internal
8244
8249
  */
8245
8250
  export declare const TrafficMirrorFilterRuleFilterSensitiveLog: (obj: TrafficMirrorFilterRule) => any;
8246
- /**
8247
- * @internal
8248
- */
8249
- export declare const TrafficMirrorFilterFilterSensitiveLog: (obj: TrafficMirrorFilter) => any;
8250
- /**
8251
- * @internal
8252
- */
8253
- export declare const CreateTrafficMirrorFilterResultFilterSensitiveLog: (obj: CreateTrafficMirrorFilterResult) => any;