interface LoggingTypeConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EKS.Legacy.CfnCluster.LoggingTypeConfigProperty |
Java | software.amazon.awscdk.services.eks.legacy.CfnCluster.LoggingTypeConfigProperty |
Python | aws_cdk.aws_eks_legacy.CfnCluster.LoggingTypeConfigProperty |
TypeScript | @aws-cdk/aws-eks-legacy » CfnCluster » LoggingTypeConfigProperty |
The enabled logging type.
For a list of the valid logging types, see the types property of LogSetup in the Amazon EKS API Reference .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as eks_legacy from '@aws-cdk/aws-eks-legacy';
const loggingTypeConfigProperty: eks_legacy.CfnCluster.LoggingTypeConfigProperty = {
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The name of the log type. |
type?
Type:
string
(optional)
The name of the log type.

.NET
Java
Python
TypeScript