Struct aws_sdk_apprunner::types::builders::ConnectionSummaryBuilder
source · #[non_exhaustive]pub struct ConnectionSummaryBuilder { /* private fields */ }
Expand description
A builder for ConnectionSummary
.
Implementations§
source§impl ConnectionSummaryBuilder
impl ConnectionSummaryBuilder
sourcepub fn connection_name(self, input: impl Into<String>) -> Self
pub fn connection_name(self, input: impl Into<String>) -> Self
The customer-provided connection name.
sourcepub fn set_connection_name(self, input: Option<String>) -> Self
pub fn set_connection_name(self, input: Option<String>) -> Self
The customer-provided connection name.
sourcepub fn get_connection_name(&self) -> &Option<String>
pub fn get_connection_name(&self) -> &Option<String>
The customer-provided connection name.
sourcepub fn connection_arn(self, input: impl Into<String>) -> Self
pub fn connection_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of this connection.
sourcepub fn set_connection_arn(self, input: Option<String>) -> Self
pub fn set_connection_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of this connection.
sourcepub fn get_connection_arn(&self) -> &Option<String>
pub fn get_connection_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of this connection.
sourcepub fn provider_type(self, input: ProviderType) -> Self
pub fn provider_type(self, input: ProviderType) -> Self
The source repository provider.
sourcepub fn set_provider_type(self, input: Option<ProviderType>) -> Self
pub fn set_provider_type(self, input: Option<ProviderType>) -> Self
The source repository provider.
sourcepub fn get_provider_type(&self) -> &Option<ProviderType>
pub fn get_provider_type(&self) -> &Option<ProviderType>
The source repository provider.
sourcepub fn status(self, input: ConnectionStatus) -> Self
pub fn status(self, input: ConnectionStatus) -> Self
The current state of the App Runner connection. When the state is AVAILABLE
, you can use the connection to create an App Runner service.
sourcepub fn set_status(self, input: Option<ConnectionStatus>) -> Self
pub fn set_status(self, input: Option<ConnectionStatus>) -> Self
The current state of the App Runner connection. When the state is AVAILABLE
, you can use the connection to create an App Runner service.
sourcepub fn get_status(&self) -> &Option<ConnectionStatus>
pub fn get_status(&self) -> &Option<ConnectionStatus>
The current state of the App Runner connection. When the state is AVAILABLE
, you can use the connection to create an App Runner service.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The App Runner connection creation time, expressed as a Unix time stamp.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The App Runner connection creation time, expressed as a Unix time stamp.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The App Runner connection creation time, expressed as a Unix time stamp.
sourcepub fn build(self) -> ConnectionSummary
pub fn build(self) -> ConnectionSummary
Consumes the builder and constructs a ConnectionSummary
.
Trait Implementations§
source§impl Clone for ConnectionSummaryBuilder
impl Clone for ConnectionSummaryBuilder
source§fn clone(&self) -> ConnectionSummaryBuilder
fn clone(&self) -> ConnectionSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ConnectionSummaryBuilder
impl Debug for ConnectionSummaryBuilder
source§impl Default for ConnectionSummaryBuilder
impl Default for ConnectionSummaryBuilder
source§fn default() -> ConnectionSummaryBuilder
fn default() -> ConnectionSummaryBuilder
source§impl PartialEq for ConnectionSummaryBuilder
impl PartialEq for ConnectionSummaryBuilder
impl StructuralPartialEq for ConnectionSummaryBuilder
Auto Trait Implementations§
impl Freeze for ConnectionSummaryBuilder
impl RefUnwindSafe for ConnectionSummaryBuilder
impl Send for ConnectionSummaryBuilder
impl Sync for ConnectionSummaryBuilder
impl Unpin for ConnectionSummaryBuilder
impl UnwindSafe for ConnectionSummaryBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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