Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgrain committed Sep 1, 2023
1 parent 5bbc28f commit 9b1634f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions packages/@aws-cdk-testing/framework-integ/integ.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"language": ["typescript"]
}
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-logs/lib/log-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import { LogStream } from './log-stream';
import { CfnLogGroup } from './logs.generated';
import { MetricFilter } from './metric-filter';
import { IFilterPattern } from './pattern';
import { validateLogGroupRetention } from './private/util';
import { ILogSubscriptionDestination, SubscriptionFilter } from './subscription-filter';
import * as cloudwatch from '../../aws-cloudwatch';
import * as iam from '../../aws-iam';
import * as kms from '../../aws-kms';
import { ArnFormat, RemovalPolicy, Stack } from '../../core';
import { validateLogGroupRetention } from './private/util';

export interface ILogGroup extends iam.IResourceWithPolicy {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/aws-logs/lib/private/util.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { RetentionDays } from '../log-group';
import * as cdk from '../../../core';
import { RetentionDays } from '../log-group';

/**
* Validate log retention
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import * as path from 'path';
import { Construct, IConstruct } from 'constructs';
import { BaseLogGroupProps, ILogGroup } from './log-group';
import { LogGroupBase } from './log-group-base';
import { validateLogGroupRetention } from './private/util';
import * as iam from '../../aws-iam';
import * as s3_assets from '../../aws-s3-assets';
import * as cdk from '../../core';
import { validateLogGroupRetention } from './private/util';

const SERVICE_MANAGED_LOG_GROUP_TYPE = 'Custom::ServiceManagedLogGroup';
const SERVICE_MANAGED_LOG_GROUP_TAG = 'aws-cdk:service-managed-log-group';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import * as path from 'path';
import { Construct } from 'constructs';
import { Match, Template } from '../../assertions';
import * as cdk from '../../core';
import * as cxapi from '../../cx-api';
import { ServiceManagedLogGroup, RetentionDays, BaseLogGroupProps, ServiceManagedLogGroupProps } from '../lib';
import { Construct } from 'constructs';

const FUNCTION_LOGICAL_ID = 'ServiceManagedLogGroup' + 'f0360f7393ea41069d5f706d30f37fa7';

Expand Down

0 comments on commit 9b1634f

Please sign in to comment.