AwsCodebuildProjectLogGroupReference

AwsCodebuildProjectLogGroupReference = AwsCloudwatch

CloudWatch log-group object reference used by AwsCodebuild when CloudWatch logging is configured.

Remarks

Pass an AwsCloudwatch log-group capability instance. Direct log-group name strings, raw provider LogGroup resources, and arbitrary object shapes are not accepted.

Example

CODE
const logGroup = new AwsCloudwatch({
  logGroup: {
    name: 'dockerBuildLogs',
  },
});

const logGroupReference: AwsCodebuildProjectLogGroupReference = logGroup;