CfnClusterLogsMixin
- class aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterLogsMixin(log_type, log_delivery)
Bases:
MixinCreates an Amazon EKS control plane.
The Amazon EKS control plane consists of control plane instances that run the Kubernetes software, such as
etcdand the API server. The control plane runs in an account managed by AWS , and the Kubernetes API is exposed by the Amazon EKS API server endpoint. Each Amazon EKS cluster control plane is single tenant and unique. It runs on its own set of Amazon EC2 instances.The cluster control plane is provisioned across multiple Availability Zones and fronted by an ELB Network Load Balancer. Amazon EKS also provisions elastic network interfaces in your VPC subnets to provide connectivity from the control plane instances to the nodes (for example, to support
kubectl exec,logs, andproxydata flows).Amazon EKS nodes run in your AWS account and connect to your cluster’s control plane over the Kubernetes API server endpoint and a certificate file that is created for your cluster.
You can use the
endpointPublicAccessandendpointPrivateAccessparameters to enable or disable public and private access to your cluster’s Kubernetes API server endpoint. By default, public access is enabled, and private access is disabled. The endpoint domain name and IP address family depends on the value of theipFamilyfor the cluster. For more information, see Amazon EKS Cluster Endpoint Access Control in the Amazon EKS User Guide .You can use the
loggingparameter to enable or disable exporting the Kubernetes control plane logs for your cluster to CloudWatch Logs. By default, cluster control plane logs aren’t exported to CloudWatch Logs. For more information, see Amazon EKS Cluster Control Plane Logs in the Amazon EKS User Guide . .. epigraph:CloudWatch Logs ingestion, archive storage, and data scanning rates apply to exported control plane logs. For more information, see `CloudWatch Pricing <https://docs.aws.amazon.com/cloudwatch/pricing/>`_ .
In most cases, it takes several minutes to create a cluster. After you create an Amazon EKS cluster, you must configure your Kubernetes tooling to communicate with the API server and launch nodes into your cluster. For more information, see Allowing users to access your cluster and Launching Amazon EKS nodes in the Amazon EKS User Guide .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html
- CloudformationResource:
AWS::EKS::Cluster
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview import aws_logs as logs from aws_cdk.mixins_preview.aws_eks import mixins as eks_mixins # logs_delivery: logs.ILogsDelivery cfn_cluster_logs_mixin = eks_mixins.CfnClusterLogsMixin("logType", logs_delivery)
Create a mixin to enable vended logs for
AWS::EKS::Cluster.- Parameters:
log_type (
str) – Type of logs that are getting vended.log_delivery (
ILogsDelivery) – Object in charge of setting up the delivery destination and delivery connection.
Methods
- apply_to(resource)
Apply vended logs configuration to the construct.
- Parameters:
resource (
IConstruct)- Return type:
- supports(construct)
Check if this mixin supports the given construct (has vendedLogs property).
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- AUTO_MODE_BLOCK_STORAGE_LOGS = <aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterAutoModeBlockStorageLogs object>
- AUTO_MODE_COMPUTE_LOGS = <aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterAutoModeComputeLogs object>
- AUTO_MODE_IPAM_LOGS = <aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterAutoModeIpamLogs object>
- AUTO_MODE_LOAD_BALANCING_LOGS = <aws_cdk.mixins_preview.aws_eks.mixins.CfnClusterAutoModeLoadBalancingLogs object>
Static Methods
- classmethod is_mixin(x)
(experimental) Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.- Stability:
experimental