#[non_exhaustive]pub struct IcebergOptimizationPropertiesOutput {
pub role_arn: Option<String>,
pub compaction: Option<HashMap<String, String>>,
pub retention: Option<HashMap<String, String>>,
pub orphan_file_deletion: Option<HashMap<String, String>>,
pub last_updated_time: Option<DateTime>,
}Expand description
A structure that contains the output properties of Iceberg table optimization configuration for your catalog resource in the Glue Data Catalog.
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.role_arn: Option<String>The Amazon Resource Name (ARN) of the IAM role that is used to perform Iceberg table optimization operations.
compaction: Option<HashMap<String, String>>A map of key-value pairs that specify configuration parameters for Iceberg table compaction operations, which optimize the layout of data files to improve query performance.
retention: Option<HashMap<String, String>>A map of key-value pairs that specify configuration parameters for Iceberg table retention operations, which manage the lifecycle of table snapshots to control storage costs.
orphan_file_deletion: Option<HashMap<String, String>>A map of key-value pairs that specify configuration parameters for Iceberg orphan file deletion operations, which identify and remove files that are no longer referenced by the table metadata.
last_updated_time: Option<DateTime>The timestamp when the Iceberg optimization properties were last updated.
Implementations§
Source§impl IcebergOptimizationPropertiesOutput
impl IcebergOptimizationPropertiesOutput
Sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the IAM role that is used to perform Iceberg table optimization operations.
Sourcepub fn compaction(&self) -> Option<&HashMap<String, String>>
pub fn compaction(&self) -> Option<&HashMap<String, String>>
A map of key-value pairs that specify configuration parameters for Iceberg table compaction operations, which optimize the layout of data files to improve query performance.
Sourcepub fn retention(&self) -> Option<&HashMap<String, String>>
pub fn retention(&self) -> Option<&HashMap<String, String>>
A map of key-value pairs that specify configuration parameters for Iceberg table retention operations, which manage the lifecycle of table snapshots to control storage costs.
Sourcepub fn orphan_file_deletion(&self) -> Option<&HashMap<String, String>>
pub fn orphan_file_deletion(&self) -> Option<&HashMap<String, String>>
A map of key-value pairs that specify configuration parameters for Iceberg orphan file deletion operations, which identify and remove files that are no longer referenced by the table metadata.
Sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The timestamp when the Iceberg optimization properties were last updated.
Source§impl IcebergOptimizationPropertiesOutput
impl IcebergOptimizationPropertiesOutput
Sourcepub fn builder() -> IcebergOptimizationPropertiesOutputBuilder
pub fn builder() -> IcebergOptimizationPropertiesOutputBuilder
Creates a new builder-style object to manufacture IcebergOptimizationPropertiesOutput.
Trait Implementations§
Source§impl Clone for IcebergOptimizationPropertiesOutput
impl Clone for IcebergOptimizationPropertiesOutput
Source§fn clone(&self) -> IcebergOptimizationPropertiesOutput
fn clone(&self) -> IcebergOptimizationPropertiesOutput
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl PartialEq for IcebergOptimizationPropertiesOutput
impl PartialEq for IcebergOptimizationPropertiesOutput
Source§fn eq(&self, other: &IcebergOptimizationPropertiesOutput) -> bool
fn eq(&self, other: &IcebergOptimizationPropertiesOutput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IcebergOptimizationPropertiesOutput
Auto Trait Implementations§
impl Freeze for IcebergOptimizationPropertiesOutput
impl RefUnwindSafe for IcebergOptimizationPropertiesOutput
impl Send for IcebergOptimizationPropertiesOutput
impl Sync for IcebergOptimizationPropertiesOutput
impl Unpin for IcebergOptimizationPropertiesOutput
impl UnsafeUnpin for IcebergOptimizationPropertiesOutput
impl UnwindSafe for IcebergOptimizationPropertiesOutput
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§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