Best Python code snippet using localstack_python
__init__.py
Source:__init__.py  
...2585        aqua_configuration_status: AquaConfigurationStatus = None,2586    ) -> ModifyAquaOutputMessage:2587        raise NotImplementedError2588    @handler("ModifyAuthenticationProfile")2589    def modify_authentication_profile(2590        self,2591        context: RequestContext,2592        authentication_profile_name: AuthenticationProfileNameString,2593        authentication_profile_content: String,2594    ) -> ModifyAuthenticationProfileResult:2595        raise NotImplementedError2596    @handler("ModifyCluster")2597    def modify_cluster(2598        self,2599        context: RequestContext,2600        cluster_identifier: String,2601        cluster_type: String = None,2602        node_type: String = None,2603        number_of_nodes: IntegerOptional = None,...client.pyi
Source:client.pyi  
...1381        Modifies whether a cluster can use AQUA (Advanced Query Accelerator).1382        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/redshift.html#Redshift.Client.modify_aqua_configuration)1383        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_redshift/client.html#modify_aqua_configuration)1384        """1385    def modify_authentication_profile(1386        self, *, AuthenticationProfileName: str, AuthenticationProfileContent: str1387    ) -> ModifyAuthenticationProfileResultTypeDef:1388        """1389        Modifies an authentication profile.1390        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/redshift.html#Redshift.Client.modify_authentication_profile)1391        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_redshift/client.html#modify_authentication_profile)1392        """1393    def modify_cluster(1394        self,1395        *,1396        ClusterIdentifier: str,1397        ClusterType: str = None,1398        NodeType: str = None,1399        NumberOfNodes: int = None,...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
