[][src]Struct rusoto_kendra::CapacityUnitsConfiguration

pub struct CapacityUnitsConfiguration {
    pub query_capacity_units: i64,
    pub storage_capacity_units: i64,
}

Specifies capacity units configured for your index. You can add and remove capacity units to tune an index to your requirements.

Fields

query_capacity_units: i64

The amount of extra query capacity for an index. Each capacity unit provides 0.5 queries per second and 40,000 queries per day.

storage_capacity_units: i64

The amount of extra storage capacity for an index. Each capacity unit provides 150 Gb of storage space or 500,000 documents, whichever is reached first.

Trait Implementations

impl Clone for CapacityUnitsConfiguration[src]

impl Debug for CapacityUnitsConfiguration[src]

impl Default for CapacityUnitsConfiguration[src]

impl<'de> Deserialize<'de> for CapacityUnitsConfiguration[src]

impl PartialEq<CapacityUnitsConfiguration> for CapacityUnitsConfiguration[src]

impl Serialize for CapacityUnitsConfiguration[src]

impl StructuralPartialEq for CapacityUnitsConfiguration[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.