Struct aws_sdk_redshift::operation::reject_data_share::builders::RejectDataShareOutputBuilder
source · #[non_exhaustive]pub struct RejectDataShareOutputBuilder { /* private fields */ }
Expand description
A builder for RejectDataShareOutput
.
Implementations§
The Amazon Resource Name (ARN) of the datashare that the consumer is to use.
The Amazon Resource Name (ARN) of the datashare that the consumer is to use.
The Amazon Resource Name (ARN) of the datashare that the consumer is to use.
sourcepub fn producer_arn(self, input: impl Into<String>) -> Self
pub fn producer_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the producer namespace.
sourcepub fn set_producer_arn(self, input: Option<String>) -> Self
pub fn set_producer_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the producer namespace.
sourcepub fn get_producer_arn(&self) -> &Option<String>
pub fn get_producer_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the producer namespace.
sourcepub fn allow_publicly_accessible_consumers(self, input: bool) -> Self
pub fn allow_publicly_accessible_consumers(self, input: bool) -> Self
A value that specifies whether the datashare can be shared to a publicly accessible cluster.
sourcepub fn set_allow_publicly_accessible_consumers(
self,
input: Option<bool>,
) -> Self
pub fn set_allow_publicly_accessible_consumers( self, input: Option<bool>, ) -> Self
A value that specifies whether the datashare can be shared to a publicly accessible cluster.
sourcepub fn get_allow_publicly_accessible_consumers(&self) -> &Option<bool>
pub fn get_allow_publicly_accessible_consumers(&self) -> &Option<bool>
A value that specifies whether the datashare can be shared to a publicly accessible cluster.
Appends an item to data_share_associations
.
To override the contents of this collection use set_data_share_associations
.
A value that specifies when the datashare has an association between producer and data consumers.
A value that specifies when the datashare has an association between producer and data consumers.
A value that specifies when the datashare has an association between producer and data consumers.
sourcepub fn managed_by(self, input: impl Into<String>) -> Self
pub fn managed_by(self, input: impl Into<String>) -> Self
The identifier of a datashare to show its managing entity.
sourcepub fn set_managed_by(self, input: Option<String>) -> Self
pub fn set_managed_by(self, input: Option<String>) -> Self
The identifier of a datashare to show its managing entity.
sourcepub fn get_managed_by(&self) -> &Option<String>
pub fn get_managed_by(&self) -> &Option<String>
The identifier of a datashare to show its managing entity.
sourcepub fn build(self) -> RejectDataShareOutput
pub fn build(self) -> RejectDataShareOutput
Consumes the builder and constructs a RejectDataShareOutput
.
Trait Implementations§
source§fn clone(&self) -> RejectDataShareOutputBuilder
fn clone(&self) -> RejectDataShareOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§fn default() -> RejectDataShareOutputBuilder
fn default() -> RejectDataShareOutputBuilder
source§fn eq(&self, other: &RejectDataShareOutputBuilder) -> bool
fn eq(&self, other: &RejectDataShareOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.Auto Trait Implementations§
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