"""AMH Instance""" from aws_cdk import aws_kms as _kms from cdk_ec2_key_pair import KeyPair from constructs import Construct from base_host_group.host_group import HostGroup from network.generic_network import GenericNetwork from security.generic_security import GenericSecurity from utilities.swift_components import SwiftComponents class SwiftAMH(HostGroup): """AMH Instance""" # pylint: disable=too-many-arguments def __init__(self, scope: Construct, cid: str, network: GenericNetwork, security: GenericSecurity, workload_key: _kms.Key, ops_key: KeyPair, ami_id: str = None, private_ip: str = None, **kwargs) -> None: super().__init__(scope, cid=cid, component=SwiftComponents.AMH, network=network, security=security, workload_key=workload_key, ops_key=ops_key, ami_id=ami_id, private_ip=private_ip, **kwargs )