interface LogConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MediaPackage.CfnPackagingGroup.LogConfigurationProperty | 
  Java | software.amazon.awscdk.services.mediapackage.CfnPackagingGroup.LogConfigurationProperty | 
  Python | aws_cdk.aws_mediapackage.CfnPackagingGroup.LogConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-mediapackage » CfnPackagingGroup » LogConfigurationProperty | 
Sets a custom Amazon CloudWatch log group name for egress logs.
If a log group name isn't specified, the default name is used: /aws/MediaPackage/EgressAccessLogs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediapackage from '@aws-cdk/aws-mediapackage';
const logConfigurationProperty: mediapackage.CfnPackagingGroup.LogConfigurationProperty = {
  logGroupName: 'logGroupName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| log | string | Sets a custom Amazon CloudWatch log group name for egress logs. | 
logGroupName?
Type:
string
(optional)
Sets a custom Amazon CloudWatch log group name for egress logs.
If a log group name isn't specified, the default name is used: /aws/MediaPackage/EgressAccessLogs.

 .NET
 Java
 Python
 TypeScript