#[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<DestinationOptionsRequestBuilder> for DestinationOptionsRequestBuilder
impl PartialEq<DestinationOptionsRequestBuilder> 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 ==
.