Struct aws_sdk_ec2::types::builders::AthenaIntegrationBuilder
source · #[non_exhaustive]pub struct AthenaIntegrationBuilder { /* private fields */ }
Expand description
A builder for AthenaIntegration
.
Implementations§
source§impl AthenaIntegrationBuilder
impl AthenaIntegrationBuilder
sourcepub fn integration_result_s3_destination_arn(
self,
input: impl Into<String>,
) -> Self
pub fn integration_result_s3_destination_arn( self, input: impl Into<String>, ) -> Self
The location in Amazon S3 to store the generated CloudFormation template.
This field is required.sourcepub fn set_integration_result_s3_destination_arn(
self,
input: Option<String>,
) -> Self
pub fn set_integration_result_s3_destination_arn( self, input: Option<String>, ) -> Self
The location in Amazon S3 to store the generated CloudFormation template.
sourcepub fn get_integration_result_s3_destination_arn(&self) -> &Option<String>
pub fn get_integration_result_s3_destination_arn(&self) -> &Option<String>
The location in Amazon S3 to store the generated CloudFormation template.
sourcepub fn partition_load_frequency(self, input: PartitionLoadFrequency) -> Self
pub fn partition_load_frequency(self, input: PartitionLoadFrequency) -> Self
The schedule for adding new partitions to the table.
This field is required.sourcepub fn set_partition_load_frequency(
self,
input: Option<PartitionLoadFrequency>,
) -> Self
pub fn set_partition_load_frequency( self, input: Option<PartitionLoadFrequency>, ) -> Self
The schedule for adding new partitions to the table.
sourcepub fn get_partition_load_frequency(&self) -> &Option<PartitionLoadFrequency>
pub fn get_partition_load_frequency(&self) -> &Option<PartitionLoadFrequency>
The schedule for adding new partitions to the table.
sourcepub fn partition_start_date(self, input: DateTime) -> Self
pub fn partition_start_date(self, input: DateTime) -> Self
The start date for the partition.
sourcepub fn set_partition_start_date(self, input: Option<DateTime>) -> Self
pub fn set_partition_start_date(self, input: Option<DateTime>) -> Self
The start date for the partition.
sourcepub fn get_partition_start_date(&self) -> &Option<DateTime>
pub fn get_partition_start_date(&self) -> &Option<DateTime>
The start date for the partition.
sourcepub fn partition_end_date(self, input: DateTime) -> Self
pub fn partition_end_date(self, input: DateTime) -> Self
The end date for the partition.
sourcepub fn set_partition_end_date(self, input: Option<DateTime>) -> Self
pub fn set_partition_end_date(self, input: Option<DateTime>) -> Self
The end date for the partition.
sourcepub fn get_partition_end_date(&self) -> &Option<DateTime>
pub fn get_partition_end_date(&self) -> &Option<DateTime>
The end date for the partition.
sourcepub fn build(self) -> AthenaIntegration
pub fn build(self) -> AthenaIntegration
Consumes the builder and constructs a AthenaIntegration
.
Trait Implementations§
source§impl Clone for AthenaIntegrationBuilder
impl Clone for AthenaIntegrationBuilder
source§fn clone(&self) -> AthenaIntegrationBuilder
fn clone(&self) -> AthenaIntegrationBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AthenaIntegrationBuilder
impl Debug for AthenaIntegrationBuilder
source§impl Default for AthenaIntegrationBuilder
impl Default for AthenaIntegrationBuilder
source§fn default() -> AthenaIntegrationBuilder
fn default() -> AthenaIntegrationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AthenaIntegrationBuilder
impl PartialEq for AthenaIntegrationBuilder
source§fn eq(&self, other: &AthenaIntegrationBuilder) -> bool
fn eq(&self, other: &AthenaIntegrationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AthenaIntegrationBuilder
Auto Trait Implementations§
impl Freeze for AthenaIntegrationBuilder
impl RefUnwindSafe for AthenaIntegrationBuilder
impl Send for AthenaIntegrationBuilder
impl Sync for AthenaIntegrationBuilder
impl Unpin for AthenaIntegrationBuilder
impl UnwindSafe for AthenaIntegrationBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.