Show / Hide Table of Contents

Class CfnIndexPropsMixin.CapacityUnitsConfigurationProperty

Specifies additional capacity units configured for your Enterprise Edition index.

Inheritance
object
CfnIndexPropsMixin.CapacityUnitsConfigurationProperty
Implements
CfnIndexPropsMixin.ICapacityUnitsConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Kendra
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnIndexPropsMixin.CapacityUnitsConfigurationProperty : CfnIndexPropsMixin.ICapacityUnitsConfigurationProperty
Syntax (vb)
Public Class CfnIndexPropsMixin.CapacityUnitsConfigurationProperty Implements CfnIndexPropsMixin.ICapacityUnitsConfigurationProperty
Remarks

You can add and remove capacity units to fit your usage requirements.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Kendra;

             var capacityUnitsConfigurationProperty = new CapacityUnitsConfigurationProperty {
                 QueryCapacityUnits = 123,
                 StorageCapacityUnits = 123
             };

Synopsis

Constructors

CapacityUnitsConfigurationProperty()

Specifies additional capacity units configured for your Enterprise Edition index.

Properties

QueryCapacityUnits

The amount of extra query capacity for an index and GetQuerySuggestions capacity.

StorageCapacityUnits

The amount of extra storage capacity for an index.

Constructors

CapacityUnitsConfigurationProperty()

Specifies additional capacity units configured for your Enterprise Edition index.

public CapacityUnitsConfigurationProperty()
Remarks

You can add and remove capacity units to fit your usage requirements.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Kendra;

             var capacityUnitsConfigurationProperty = new CapacityUnitsConfigurationProperty {
                 QueryCapacityUnits = 123,
                 StorageCapacityUnits = 123
             };

Properties

QueryCapacityUnits

The amount of extra query capacity for an index and GetQuerySuggestions capacity.

public double? QueryCapacityUnits { get; set; }
Property Value

double?

Remarks

A single extra capacity unit for an index provides 0.1 queries per second or approximately 8,000 queries per day. You can add up to 100 extra capacity units.

GetQuerySuggestions capacity is five times the provisioned query capacity for an index, or the base capacity of 2.5 calls per second, whichever is higher. For example, the base capacity for an index is 0.1 queries per second, and GetQuerySuggestions capacity has a base of 2.5 calls per second. If you add another 0.1 queries per second to total 0.2 queries per second for an index, the GetQuerySuggestions capacity is 2.5 calls per second (higher than five times 0.2 queries per second).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html#cfn-kendra-index-capacityunitsconfiguration-querycapacityunits

StorageCapacityUnits

The amount of extra storage capacity for an index.

public double? StorageCapacityUnits { get; set; }
Property Value

double?

Remarks

A single capacity unit provides 30 GB of storage space or 100,000 documents, whichever is reached first. You can add up to 100 extra capacity units.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html#cfn-kendra-index-capacityunitsconfiguration-storagecapacityunits

Implements

CfnIndexPropsMixin.ICapacityUnitsConfigurationProperty
Back to top Generated by DocFX