Class: Aws::Finspace::Types::UpdateKxClusterCodeConfigurationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::UpdateKxClusterCodeConfigurationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-finspace/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A token that ensures idempotency.
-
#cluster_name ⇒ String
The name of the cluster.
-
#code ⇒ Types::CodeConfiguration
The structure of the customer code available within the running cluster.
-
#command_line_arguments ⇒ Array<Types::KxCommandLineArgument>
Specifies the key-value pairs to make them available inside the cluster.
-
#deployment_configuration ⇒ Types::KxClusterCodeDeploymentConfiguration
The configuration that allows you to choose how you want to update the code on a cluster.
-
#environment_id ⇒ String
A unique identifier of the kdb environment.
-
#initialization_script ⇒ String
Specifies a Q program that will be run at launch of a cluster.
Instance Attribute Details
#client_token ⇒ String
A token that ensures idempotency. This token expires in 10 minutes.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the cluster.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |
#code ⇒ Types::CodeConfiguration
The structure of the customer code available within the running cluster.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |
#command_line_arguments ⇒ Array<Types::KxCommandLineArgument>
Specifies the key-value pairs to make them available inside the cluster.
You cannot update this parameter for a ‘NO_RESTART` deployment.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |
#deployment_configuration ⇒ Types::KxClusterCodeDeploymentConfiguration
The configuration that allows you to choose how you want to update the code on a cluster.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |
#environment_id ⇒ String
A unique identifier of the kdb environment.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |
#initialization_script ⇒ String
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_RESTART` deployment.
4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 |
# File 'lib/aws-sdk-finspace/types.rb', line 4864 class UpdateKxClusterCodeConfigurationRequest < Struct.new( :environment_id, :cluster_name, :client_token, :code, :initialization_script, :command_line_arguments, :deployment_configuration) SENSITIVE = [] include Aws::Structure end |