Struct aws_sdk_ec2::types::builders::IntegrateServicesBuilder
source · #[non_exhaustive]pub struct IntegrateServicesBuilder { /* private fields */ }
Expand description
A builder for IntegrateServices
.
Implementations§
source§impl IntegrateServicesBuilder
impl IntegrateServicesBuilder
sourcepub fn athena_integrations(self, input: AthenaIntegration) -> Self
pub fn athena_integrations(self, input: AthenaIntegration) -> Self
Appends an item to athena_integrations
.
To override the contents of this collection use set_athena_integrations
.
Information about the integration with Amazon Athena.
sourcepub fn set_athena_integrations(
self,
input: Option<Vec<AthenaIntegration>>,
) -> Self
pub fn set_athena_integrations( self, input: Option<Vec<AthenaIntegration>>, ) -> Self
Information about the integration with Amazon Athena.
sourcepub fn get_athena_integrations(&self) -> &Option<Vec<AthenaIntegration>>
pub fn get_athena_integrations(&self) -> &Option<Vec<AthenaIntegration>>
Information about the integration with Amazon Athena.
sourcepub fn build(self) -> IntegrateServices
pub fn build(self) -> IntegrateServices
Consumes the builder and constructs a IntegrateServices
.
Trait Implementations§
source§impl Clone for IntegrateServicesBuilder
impl Clone for IntegrateServicesBuilder
source§fn clone(&self) -> IntegrateServicesBuilder
fn clone(&self) -> IntegrateServicesBuilder
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 IntegrateServicesBuilder
impl Debug for IntegrateServicesBuilder
source§impl Default for IntegrateServicesBuilder
impl Default for IntegrateServicesBuilder
source§fn default() -> IntegrateServicesBuilder
fn default() -> IntegrateServicesBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for IntegrateServicesBuilder
impl PartialEq for IntegrateServicesBuilder
source§fn eq(&self, other: &IntegrateServicesBuilder) -> bool
fn eq(&self, other: &IntegrateServicesBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IntegrateServicesBuilder
Auto Trait Implementations§
impl Freeze for IntegrateServicesBuilder
impl RefUnwindSafe for IntegrateServicesBuilder
impl Send for IntegrateServicesBuilder
impl Sync for IntegrateServicesBuilder
impl Unpin for IntegrateServicesBuilder
impl UnwindSafe for IntegrateServicesBuilder
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.