Skip to content

Commit

Permalink
terser file names and private/ folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Niranjan Jayakar committed Oct 23, 2020
1 parent 9e1b566 commit 9943204
Show file tree
Hide file tree
Showing 15 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpRouteIntegrationBindOptions, HttpRouteIntegrationConfig } from '@aws-cdk/aws-apigatewayv2';
import * as elbv2 from '@aws-cdk/aws-elasticloadbalancingv2';
import { HttpPrivateIntegrationOptions } from './base-types';
import { HttpPrivateIntegration } from './http-private';
import { HttpPrivateIntegration } from './private/integration';

/**
* Properties to initialize `HttpAlbIntegration`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * from './base-types';
export * from './alb-integration';
export * from './nlb-integration';
export * from './service-discovery-integration';
export * from './alb';
export * from './nlb';
export * from './service-discovery';
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { HttpRouteIntegrationBindOptions, HttpRouteIntegrationConfig } from '@aws-cdk/aws-apigatewayv2';
import * as elbv2 from '@aws-cdk/aws-elasticloadbalancingv2';
import { HttpPrivateIntegrationOptions } from './base-types';
import { HttpPrivateIntegration } from './http-private';
import { HttpPrivateIntegration } from './private/integration';

/**
* Properties to initialize `HttpNlbIntegration`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as ec2 from '@aws-cdk/aws-ec2';


/**
* Options reuqired to use an existing vpcLink or configure a new one
* Options required to use an existing vpcLink or configure a new one
*
* @internal
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpMethod, IVpcLink, HttpRouteIntegrationBindOptions, HttpRouteIntegrationConfig } from '@aws-cdk/aws-apigatewayv2';
import * as servicediscovery from '@aws-cdk/aws-servicediscovery';
import { HttpPrivateIntegration } from './http-private';
import { HttpPrivateIntegration } from './private/integration';

/**
* Properties to initialize `HttpServiceDiscoveryIntegration`.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import '@aws-cdk/assert/jest';
import { HttpApi, HttpRoute, HttpRouteIntegrationBindOptions, HttpRouteIntegrationConfig, HttpRouteKey } from '@aws-cdk/aws-apigatewayv2';
import { Stack } from '@aws-cdk/core';
import { HttpPrivateIntegration } from '../../lib/http/http-private';
import { HttpPrivateIntegration } from '../../../lib/http/private/integration';

describe('HttpPrivateIntegration', () => {
test('throws error if both vpcLink and vpc are not passed', () => {
Expand Down

0 comments on commit 9943204

Please sign in to comment.