Method: Aws::SecurityHub::Types::AwsRedshiftClusterDetails#number_of_nodes
- Defined in:
- lib/aws-sdk-securityhub/types.rb
#number_of_nodes ⇒ Integer
The number of compute nodes in the cluster.
17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 |
# File 'lib/aws-sdk-securityhub/types.rb', line 17280 class AwsRedshiftClusterDetails < Struct.new( :allow_version_upgrade, :automated_snapshot_retention_period, :availability_zone, :cluster_availability_status, :cluster_create_time, :cluster_identifier, :cluster_nodes, :cluster_parameter_groups, :cluster_public_key, :cluster_revision_number, :cluster_security_groups, :cluster_snapshot_copy_status, :cluster_status, :cluster_subnet_group_name, :cluster_version, :db_name, :deferred_maintenance_windows, :elastic_ip_status, :elastic_resize_number_of_node_options, :encrypted, :endpoint, :enhanced_vpc_routing, :expected_next_snapshot_schedule_time, :expected_next_snapshot_schedule_time_status, :hsm_status, :iam_roles, :kms_key_id, :maintenance_track_name, :manual_snapshot_retention_period, :master_username, :next_maintenance_window_start_time, :node_type, :number_of_nodes, :pending_actions, :pending_modified_values, :preferred_maintenance_window, :publicly_accessible, :resize_info, :restore_status, :snapshot_schedule_identifier, :snapshot_schedule_state, :vpc_id, :vpc_security_groups, :logging_status) SENSITIVE = [] include Aws::Structure end |