Method: Aws::Redshift::Types::PendingModifiedValues#encryption_type

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

#encryption_typeString

The encryption type for a cluster. Possible values are: KMS and None.

Returns:

  • (String)


9786
9787
9788
9789
9790
9791
9792
9793
9794
9795
9796
9797
9798
9799
9800
# File 'lib/aws-sdk-redshift/types.rb', line 9786

class PendingModifiedValues < Struct.new(
  :master_user_password,
  :node_type,
  :number_of_nodes,
  :cluster_type,
  :cluster_version,
  :automated_snapshot_retention_period,
  :cluster_identifier,
  :publicly_accessible,
  :enhanced_vpc_routing,
  :maintenance_track_name,
  :encryption_type)
  SENSITIVE = [:master_user_password]
  include Aws::Structure
end