Method: Aws::Redshift::Types::ModifyClusterMessage#encrypted

Defined in:
lib/aws-sdk-redshift/types.rb

#encryptedBoolean

Indicates whether the cluster is encrypted. If the value is encrypted (true) and you provide a value for the KmsKeyId parameter, we encrypt the cluster with the provided KmsKeyId. If you don’t provide a KmsKeyId, we encrypt with the default key.

If the value is not encrypted (false), then the cluster is decrypted.

Returns:

  • (Boolean)


8688
8689
8690
8691
8692
8693
8694
8695
8696
8697
8698
8699
8700
8701
8702
8703
8704
8705
8706
8707
8708
8709
8710
8711
8712
8713
8714
8715
8716
8717
8718
8719
8720
8721
# File 'lib/aws-sdk-redshift/types.rb', line 8688

class ModifyClusterMessage < Struct.new(
  :cluster_identifier,
  :cluster_type,
  :node_type,
  :number_of_nodes,
  :cluster_security_groups,
  :vpc_security_group_ids,
  :master_user_password,
  :cluster_parameter_group_name,
  :automated_snapshot_retention_period,
  :manual_snapshot_retention_period,
  :preferred_maintenance_window,
  :cluster_version,
  :allow_version_upgrade,
  :hsm_client_certificate_identifier,
  :hsm_configuration_identifier,
  :new_cluster_identifier,
  :publicly_accessible,
  :elastic_ip,
  :enhanced_vpc_routing,
  :maintenance_track_name,
  :encrypted,
  :kms_key_id,
  :availability_zone_relocation,
  :availability_zone,
  :port,
  :manage_master_password,
  :master_password_secret_kms_key_id,
  :ip_address_type,
  :multi_az,
  :extra_compute_for_automatic_optimization)
  SENSITIVE = [:master_user_password]
  include Aws::Structure
end