interface CfnRestApiExecutionLogsLogGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGateway.Mixins.CfnRestApiExecutionLogsLogGroupProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigateway/mixins#CfnRestApiExecutionLogsLogGroupProps |
Java | software.amazon.awscdk.mixins.preview.services.apigateway.mixins.CfnRestApiExecutionLogsLogGroupProps |
Python | aws_cdk.mixins_preview.aws_apigateway.mixins.CfnRestApiExecutionLogsLogGroupProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_apigateway ยป mixins ยป CfnRestApiExecutionLogsLogGroupProps |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigateway_mixins } from '@aws-cdk/mixins-preview/aws-apigateway';
const cfnRestApiExecutionLogsLogGroupProps: apigateway_mixins.CfnRestApiExecutionLogsLogGroupProps = {
outputFormat: apigateway_mixins.CfnRestApiExecutionLogsOutputFormat.LogGroup.PLAIN,
recordFields: [apigateway_mixins.CfnRestApiExecutionLogsRecordFields.RESOURCE_ARN],
};
Properties
| Name | Type | Description |
|---|---|---|
| output | Log | Format for log output, options are plain,json. |
| record | Cfn[] | Record fields that can be provided to a log delivery. |
outputFormat?
Type:
Log
(optional)
Format for log output, options are plain,json.
recordFields?
Type:
Cfn[]
(optional)
Record fields that can be provided to a log delivery.

.NET
Go
Java
Python
TypeScript