#[non_exhaustive]pub struct DestinationOptionsRequestBuilder { /* private fields */ }
Expand description
A builder for DestinationOptionsRequest
.
Implementations§
source§impl DestinationOptionsRequestBuilder
impl DestinationOptionsRequestBuilder
sourcepub fn file_format(self, input: DestinationFileFormat) -> Self
pub fn file_format(self, input: DestinationFileFormat) -> Self
The format for the flow log. The default is plain-text
.
sourcepub fn set_file_format(self, input: Option<DestinationFileFormat>) -> Self
pub fn set_file_format(self, input: Option<DestinationFileFormat>) -> Self
The format for the flow log. The default is plain-text
.
sourcepub fn get_file_format(&self) -> &Option<DestinationFileFormat>
pub fn get_file_format(&self) -> &Option<DestinationFileFormat>
The format for the flow log. The default is plain-text
.
sourcepub fn hive_compatible_partitions(self, input: bool) -> Self
pub fn hive_compatible_partitions(self, input: bool) -> Self
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is false
.
sourcepub fn set_hive_compatible_partitions(self, input: Option<bool>) -> Self
pub fn set_hive_compatible_partitions(self, input: Option<bool>) -> Self
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is false
.
sourcepub fn get_hive_compatible_partitions(&self) -> &Option<bool>
pub fn get_hive_compatible_partitions(&self) -> &Option<bool>
Indicates whether to use Hive-compatible prefixes for flow logs stored in Amazon S3. The default is false
.
sourcepub fn per_hour_partition(self, input: bool) -> Self
pub fn per_hour_partition(self, input: bool) -> Self
Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is false
.
sourcepub fn set_per_hour_partition(self, input: Option<bool>) -> Self
pub fn set_per_hour_partition(self, input: Option<bool>) -> Self
Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is false
.
sourcepub fn get_per_hour_partition(&self) -> &Option<bool>
pub fn get_per_hour_partition(&self) -> &Option<bool>
Indicates whether to partition the flow log per hour. This reduces the cost and response time for queries. The default is false
.
sourcepub fn build(self) -> DestinationOptionsRequest
pub fn build(self) -> DestinationOptionsRequest
Consumes the builder and constructs a DestinationOptionsRequest
.
Trait Implementations§
source§impl Clone for DestinationOptionsRequestBuilder
impl Clone for DestinationOptionsRequestBuilder
source§fn clone(&self) -> DestinationOptionsRequestBuilder
fn clone(&self) -> DestinationOptionsRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DestinationOptionsRequestBuilder
impl Default for DestinationOptionsRequestBuilder
source§fn default() -> DestinationOptionsRequestBuilder
fn default() -> DestinationOptionsRequestBuilder
source§impl PartialEq for DestinationOptionsRequestBuilder
impl PartialEq for DestinationOptionsRequestBuilder
source§fn eq(&self, other: &DestinationOptionsRequestBuilder) -> bool
fn eq(&self, other: &DestinationOptionsRequestBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DestinationOptionsRequestBuilder
Auto Trait Implementations§
impl Freeze for DestinationOptionsRequestBuilder
impl RefUnwindSafe for DestinationOptionsRequestBuilder
impl Send for DestinationOptionsRequestBuilder
impl Sync for DestinationOptionsRequestBuilder
impl Unpin for DestinationOptionsRequestBuilder
impl UnwindSafe for DestinationOptionsRequestBuilder
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> 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