Struct aws_sdk_redshift::types::builders::InboundIntegrationBuilder
source · #[non_exhaustive]pub struct InboundIntegrationBuilder { /* private fields */ }
Expand description
A builder for InboundIntegration
.
Implementations§
source§impl InboundIntegrationBuilder
impl InboundIntegrationBuilder
sourcepub fn integration_arn(self, input: impl Into<String>) -> Self
pub fn integration_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of an inbound integration.
sourcepub fn set_integration_arn(self, input: Option<String>) -> Self
pub fn set_integration_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of an inbound integration.
sourcepub fn get_integration_arn(&self) -> &Option<String>
pub fn get_integration_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of an inbound integration.
sourcepub fn source_arn(self, input: impl Into<String>) -> Self
pub fn source_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the source of an inbound integration.
sourcepub fn set_source_arn(self, input: Option<String>) -> Self
pub fn set_source_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the source of an inbound integration.
sourcepub fn get_source_arn(&self) -> &Option<String>
pub fn get_source_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the source of an inbound integration.
sourcepub fn target_arn(self, input: impl Into<String>) -> Self
pub fn target_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the target of an inbound integration.
sourcepub fn set_target_arn(self, input: Option<String>) -> Self
pub fn set_target_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the target of an inbound integration.
sourcepub fn get_target_arn(&self) -> &Option<String>
pub fn get_target_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the target of an inbound integration.
sourcepub fn status(self, input: ZeroEtlIntegrationStatus) -> Self
pub fn status(self, input: ZeroEtlIntegrationStatus) -> Self
The status of an inbound integration.
sourcepub fn set_status(self, input: Option<ZeroEtlIntegrationStatus>) -> Self
pub fn set_status(self, input: Option<ZeroEtlIntegrationStatus>) -> Self
The status of an inbound integration.
sourcepub fn get_status(&self) -> &Option<ZeroEtlIntegrationStatus>
pub fn get_status(&self) -> &Option<ZeroEtlIntegrationStatus>
The status of an inbound integration.
sourcepub fn errors(self, input: IntegrationError) -> Self
pub fn errors(self, input: IntegrationError) -> Self
Appends an item to errors
.
To override the contents of this collection use set_errors
.
The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.
sourcepub fn set_errors(self, input: Option<Vec<IntegrationError>>) -> Self
pub fn set_errors(self, input: Option<Vec<IntegrationError>>) -> Self
The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.
sourcepub fn get_errors(&self) -> &Option<Vec<IntegrationError>>
pub fn get_errors(&self) -> &Option<Vec<IntegrationError>>
The outstanding errors of an inbound integration. Each item is an "IntegrationError". This is null if there is no error.
sourcepub fn create_time(self, input: DateTime) -> Self
pub fn create_time(self, input: DateTime) -> Self
The creation time of an inbound integration.
sourcepub fn set_create_time(self, input: Option<DateTime>) -> Self
pub fn set_create_time(self, input: Option<DateTime>) -> Self
The creation time of an inbound integration.
sourcepub fn get_create_time(&self) -> &Option<DateTime>
pub fn get_create_time(&self) -> &Option<DateTime>
The creation time of an inbound integration.
sourcepub fn build(self) -> InboundIntegration
pub fn build(self) -> InboundIntegration
Consumes the builder and constructs a InboundIntegration
.
Trait Implementations§
source§impl Clone for InboundIntegrationBuilder
impl Clone for InboundIntegrationBuilder
source§fn clone(&self) -> InboundIntegrationBuilder
fn clone(&self) -> InboundIntegrationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InboundIntegrationBuilder
impl Debug for InboundIntegrationBuilder
source§impl Default for InboundIntegrationBuilder
impl Default for InboundIntegrationBuilder
source§fn default() -> InboundIntegrationBuilder
fn default() -> InboundIntegrationBuilder
impl StructuralPartialEq for InboundIntegrationBuilder
Auto Trait Implementations§
impl Freeze for InboundIntegrationBuilder
impl RefUnwindSafe for InboundIntegrationBuilder
impl Send for InboundIntegrationBuilder
impl Sync for InboundIntegrationBuilder
impl Unpin for InboundIntegrationBuilder
impl UnwindSafe for InboundIntegrationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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