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.
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.
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<AthenaIntegrationBuilder> for AthenaIntegrationBuilder
impl PartialEq<AthenaIntegrationBuilder> 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 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