Class: Aws::OpenSearchService::Types::EBSOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb

Overview

Container for the parameters required to enable EBS-based storage for an OpenSearch Service domain.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ebs_enabledBoolean

Indicates whether EBS volumes are attached to data nodes in an OpenSearch Service domain.

Returns:

  • (Boolean)


3299
3300
3301
3302
3303
3304
3305
3306
3307
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3299

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops,
  :throughput)
  SENSITIVE = []
  include Aws::Structure
end

#iopsInteger

Specifies the baseline input/output (I/O) performance of EBS volumes attached to data nodes. Applicable only for the gp3 and provisioned IOPS EBS volume types.

Returns:

  • (Integer)


3299
3300
3301
3302
3303
3304
3305
3306
3307
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3299

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops,
  :throughput)
  SENSITIVE = []
  include Aws::Structure
end

#throughputInteger

Specifies the throughput (in MiB/s) of the EBS volumes attached to data nodes. Applicable only for the gp3 volume type.

Returns:

  • (Integer)


3299
3300
3301
3302
3303
3304
3305
3306
3307
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3299

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops,
  :throughput)
  SENSITIVE = []
  include Aws::Structure
end

#volume_sizeInteger

Specifies the size (in GiB) of EBS volumes attached to data nodes.

Returns:

  • (Integer)


3299
3300
3301
3302
3303
3304
3305
3306
3307
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3299

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops,
  :throughput)
  SENSITIVE = []
  include Aws::Structure
end

#volume_typeString

Specifies the type of EBS volumes attached to data nodes.

Returns:

  • (String)


3299
3300
3301
3302
3303
3304
3305
3306
3307
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3299

class EBSOptions < Struct.new(
  :ebs_enabled,
  :volume_type,
  :volume_size,
  :iops,
  :throughput)
  SENSITIVE = []
  include Aws::Structure
end