fakecloud-eks 0.44.0

AWS EKS (eks) implementation for FakeCloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! AWS EKS (`eks`) implementation for FakeCloud.

pub(crate) mod eks_helpers;
pub mod persistence;
pub(crate) mod service;
pub(crate) mod state;

pub use service::{EksService, EKS_ACTIONS};
pub use state::{EksSnapshot, EksState, SharedEksState, EKS_SNAPSHOT_SCHEMA_VERSION};
// Re-exported for the CloudFormation resource_provisioner; the `state` module
// itself is pub(crate).
pub use state::{
    access_entry_arn, addon_arn, cluster_arn, fargate_profile_arn, identity_provider_config_arn,
    nodegroup_arn, pod_identity_association_arn, AccessEntry, Addon, Cluster, FargateProfile,
    IdentityProviderConfig, Nodegroup, PodIdentityAssociation, TagMap, DEFAULT_K8S_VERSION,
};