Interface UpdateKxClusterCodeConfigurationRequest.Builder
- All Superinterfaces:
- AwsRequest.Builder,- Buildable,- CopyableBuilder<UpdateKxClusterCodeConfigurationRequest.Builder,,- UpdateKxClusterCodeConfigurationRequest> - FinspaceRequest.Builder,- SdkBuilder<UpdateKxClusterCodeConfigurationRequest.Builder,,- UpdateKxClusterCodeConfigurationRequest> - SdkPojo,- SdkRequest.Builder
- Enclosing class:
- UpdateKxClusterCodeConfigurationRequest
- 
Method SummaryModifier and TypeMethodDescriptionclientToken(String clientToken) A token that ensures idempotency.clusterName(String clusterName) The name of the cluster.Sets the value of the Code property for this object.code(CodeConfiguration code) Sets the value of the Code property for this object.commandLineArguments(Collection<KxCommandLineArgument> commandLineArguments) Specifies the key-value pairs to make them available inside the cluster.commandLineArguments(Consumer<KxCommandLineArgument.Builder>... commandLineArguments) Specifies the key-value pairs to make them available inside the cluster.commandLineArguments(KxCommandLineArgument... commandLineArguments) Specifies the key-value pairs to make them available inside the cluster.deploymentConfiguration(Consumer<KxClusterCodeDeploymentConfiguration.Builder> deploymentConfiguration) The configuration that allows you to choose how you want to update the code on a cluster.deploymentConfiguration(KxClusterCodeDeploymentConfiguration deploymentConfiguration) The configuration that allows you to choose how you want to update the code on a cluster.environmentId(String environmentId) A unique identifier of the kdb environment.initializationScript(String initializationScript) Specifies a Q program that will be run at launch of a cluster.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.BuilderoverrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuildercopyMethods inherited from interface software.amazon.awssdk.services.finspace.model.FinspaceRequest.BuilderbuildMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilderapplyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojoequalsBySdkFields, sdkFieldNameToField, sdkFields
- 
Method Details- 
environmentIdA unique identifier of the kdb environment. - Parameters:
- environmentId- A unique identifier of the kdb environment.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
clusterNameThe name of the cluster. - Parameters:
- clusterName- The name of the cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
clientTokenA token that ensures idempotency. This token expires in 10 minutes. - Parameters:
- clientToken- A token that ensures idempotency. This token expires in 10 minutes.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
codeSets the value of the Code property for this object.- Parameters:
- code- The new value for the Code property for this object.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
codedefault UpdateKxClusterCodeConfigurationRequest.Builder code(Consumer<CodeConfiguration.Builder> code) Sets the value of the Code property for this object. This is a convenience method that creates an instance of theCodeConfiguration.Builderavoiding the need to create one manually viaCodeConfiguration.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocode(CodeConfiguration).- Parameters:
- code- a consumer that will call methods on- CodeConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
initializationScriptSpecifies a Q program that will be run at launch of a cluster. It is a relative path within .zip file that contains the custom code, which will be loaded on the cluster. It must include the file name itself. For example, somedir/init.q.You cannot update this parameter for a NO_RESTARTdeployment.- Parameters:
- initializationScript- Specifies a Q program that will be run at launch of a cluster. It is a relative path within .zip file that contains the custom code, which will be loaded on the cluster. It must include the file name itself. For example,- somedir/init.q.- You cannot update this parameter for a - NO_RESTARTdeployment.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
commandLineArgumentsUpdateKxClusterCodeConfigurationRequest.Builder commandLineArguments(Collection<KxCommandLineArgument> commandLineArguments) Specifies the key-value pairs to make them available inside the cluster. You cannot update this parameter for a NO_RESTARTdeployment.- Parameters:
- commandLineArguments- Specifies the key-value pairs to make them available inside the cluster.- You cannot update this parameter for a - NO_RESTARTdeployment.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
commandLineArgumentsUpdateKxClusterCodeConfigurationRequest.Builder commandLineArguments(KxCommandLineArgument... commandLineArguments) Specifies the key-value pairs to make them available inside the cluster. You cannot update this parameter for a NO_RESTARTdeployment.- Parameters:
- commandLineArguments- Specifies the key-value pairs to make them available inside the cluster.- You cannot update this parameter for a - NO_RESTARTdeployment.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
commandLineArgumentsUpdateKxClusterCodeConfigurationRequest.Builder commandLineArguments(Consumer<KxCommandLineArgument.Builder>... commandLineArguments) Specifies the key-value pairs to make them available inside the cluster. You cannot update this parameter for a This is a convenience method that creates an instance of theNO_RESTARTdeployment.KxCommandLineArgument.Builderavoiding the need to create one manually viaKxCommandLineArgument.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocommandLineArguments(List<KxCommandLineArgument>).- Parameters:
- commandLineArguments- a consumer that will call methods on- KxCommandLineArgument.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
deploymentConfigurationUpdateKxClusterCodeConfigurationRequest.Builder deploymentConfiguration(KxClusterCodeDeploymentConfiguration deploymentConfiguration) The configuration that allows you to choose how you want to update the code on a cluster. - Parameters:
- deploymentConfiguration- The configuration that allows you to choose how you want to update the code on a cluster.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
 
- 
deploymentConfigurationdefault UpdateKxClusterCodeConfigurationRequest.Builder deploymentConfiguration(Consumer<KxClusterCodeDeploymentConfiguration.Builder> deploymentConfiguration) The configuration that allows you to choose how you want to update the code on a cluster. This is a convenience method that creates an instance of theKxClusterCodeDeploymentConfiguration.Builderavoiding the need to create one manually viaKxClusterCodeDeploymentConfiguration.builder().When the Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todeploymentConfiguration(KxClusterCodeDeploymentConfiguration).- Parameters:
- deploymentConfiguration- a consumer that will call methods on- KxClusterCodeDeploymentConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
 
- 
overrideConfigurationUpdateKxClusterCodeConfigurationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
- overrideConfigurationin interface- AwsRequest.Builder
- Parameters:
- overrideConfiguration- The override configuration.
- Returns:
- This object for method chaining.
 
- 
overrideConfigurationUpdateKxClusterCodeConfigurationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
- overrideConfigurationin interface- AwsRequest.Builder
- Parameters:
- builderConsumer- A- Consumerto which an empty- AwsRequestOverrideConfiguration.Builderwill be given.
- Returns:
- This object for method chaining.
 
 
-