Struct aws_sdk_timestreamwrite::types::PartitionKey
source · #[non_exhaustive]pub struct PartitionKey {
pub type: Option<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: Option<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) -> Option<&PartitionKeyType>
pub fn type(&self) -> Option<&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<PartitionKey> for PartitionKey
impl PartialEq<PartitionKey> for PartitionKey
source§fn eq(&self, other: &PartitionKey) -> bool
fn eq(&self, other: &PartitionKey) -> bool
self
and other
values to be equal, and is used
by ==
.