Struct aws_sdk_timestreamwrite::types::PartitionKey
source · #[non_exhaustive]pub struct PartitionKey {
pub type: PartitionKeyType,
pub name: Option<String>,
pub enforcement_in_record: Option<PartitionKeyEnforcementLevel>,
}
Expand description
An attribute used in partitioning data in a table. A dimension key partitions data using the values of the dimension specified by the dimension-name as partition key, while a measure key partitions data using measure names (values of the 'measure_name' column).
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.type: PartitionKeyType
The type of the partition key. Options are DIMENSION (dimension key) and MEASURE (measure key).
name: Option<String>
The name of the attribute used for a dimension key.
enforcement_in_record: Option<PartitionKeyEnforcementLevel>
The level of enforcement for the specification of a dimension key in ingested records. Options are REQUIRED (dimension key must be specified) and OPTIONAL (dimension key does not have to be specified).
Implementations§
source§impl PartitionKey
impl PartitionKey
sourcepub fn type(&self) -> &PartitionKeyType
pub fn type(&self) -> &PartitionKeyType
The type of the partition key. Options are DIMENSION (dimension key) and MEASURE (measure key).
sourcepub fn enforcement_in_record(&self) -> Option<&PartitionKeyEnforcementLevel>
pub fn enforcement_in_record(&self) -> Option<&PartitionKeyEnforcementLevel>
The level of enforcement for the specification of a dimension key in ingested records. Options are REQUIRED (dimension key must be specified) and OPTIONAL (dimension key does not have to be specified).
source§impl PartitionKey
impl PartitionKey
sourcepub fn builder() -> PartitionKeyBuilder
pub fn builder() -> PartitionKeyBuilder
Creates a new builder-style object to manufacture PartitionKey
.
Trait Implementations§
source§impl Clone for PartitionKey
impl Clone for PartitionKey
source§fn clone(&self) -> PartitionKey
fn clone(&self) -> PartitionKey
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PartitionKey
impl Debug for PartitionKey
source§impl PartialEq for PartitionKey
impl PartialEq for PartitionKey
impl StructuralPartialEq for PartitionKey
Auto Trait Implementations§
impl Freeze for PartitionKey
impl RefUnwindSafe for PartitionKey
impl Send for PartitionKey
impl Sync for PartitionKey
impl Unpin for PartitionKey
impl UnwindSafe for PartitionKey
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more