Struct aws_sdk_proton::types::builders::ServiceBuilder
source · #[non_exhaustive]pub struct ServiceBuilder { /* private fields */ }
Expand description
A builder for Service
.
Implementations§
source§impl ServiceBuilder
impl ServiceBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the service.
This field is required.sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the service.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the service.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A description of the service.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the service.
This field is required.sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the service.
sourcepub fn template_name(self, input: impl Into<String>) -> Self
pub fn template_name(self, input: impl Into<String>) -> Self
The name of the service template.
This field is required.sourcepub fn set_template_name(self, input: Option<String>) -> Self
pub fn set_template_name(self, input: Option<String>) -> Self
The name of the service template.
sourcepub fn get_template_name(&self) -> &Option<String>
pub fn get_template_name(&self) -> &Option<String>
The name of the service template.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The time when the service was created.
This field is required.sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The time when the service was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The time when the service was created.
sourcepub fn last_modified_at(self, input: DateTime) -> Self
pub fn last_modified_at(self, input: DateTime) -> Self
The time when the service was last modified.
This field is required.sourcepub fn set_last_modified_at(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_at(self, input: Option<DateTime>) -> Self
The time when the service was last modified.
sourcepub fn get_last_modified_at(&self) -> &Option<DateTime>
pub fn get_last_modified_at(&self) -> &Option<DateTime>
The time when the service was last modified.
sourcepub fn status(self, input: ServiceStatus) -> Self
pub fn status(self, input: ServiceStatus) -> Self
The status of the service.
This field is required.sourcepub fn set_status(self, input: Option<ServiceStatus>) -> Self
pub fn set_status(self, input: Option<ServiceStatus>) -> Self
The status of the service.
sourcepub fn get_status(&self) -> &Option<ServiceStatus>
pub fn get_status(&self) -> &Option<ServiceStatus>
The status of the service.
sourcepub fn status_message(self, input: impl Into<String>) -> Self
pub fn status_message(self, input: impl Into<String>) -> Self
A service status message.
sourcepub fn set_status_message(self, input: Option<String>) -> Self
pub fn set_status_message(self, input: Option<String>) -> Self
A service status message.
sourcepub fn get_status_message(&self) -> &Option<String>
pub fn get_status_message(&self) -> &Option<String>
A service status message.
sourcepub fn spec(self, input: impl Into<String>) -> Self
pub fn spec(self, input: impl Into<String>) -> Self
The formatted specification that defines the service.
This field is required.sourcepub fn set_spec(self, input: Option<String>) -> Self
pub fn set_spec(self, input: Option<String>) -> Self
The formatted specification that defines the service.
sourcepub fn get_spec(&self) -> &Option<String>
pub fn get_spec(&self) -> &Option<String>
The formatted specification that defines the service.
sourcepub fn pipeline(self, input: ServicePipeline) -> Self
pub fn pipeline(self, input: ServicePipeline) -> Self
The service pipeline detail data.
sourcepub fn set_pipeline(self, input: Option<ServicePipeline>) -> Self
pub fn set_pipeline(self, input: Option<ServicePipeline>) -> Self
The service pipeline detail data.
sourcepub fn get_pipeline(&self) -> &Option<ServicePipeline>
pub fn get_pipeline(&self) -> &Option<ServicePipeline>
The service pipeline detail data.
sourcepub fn repository_connection_arn(self, input: impl Into<String>) -> Self
pub fn repository_connection_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.
sourcepub fn set_repository_connection_arn(self, input: Option<String>) -> Self
pub fn set_repository_connection_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.
sourcepub fn get_repository_connection_arn(&self) -> &Option<String>
pub fn get_repository_connection_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.
sourcepub fn repository_id(self, input: impl Into<String>) -> Self
pub fn repository_id(self, input: impl Into<String>) -> Self
The ID of the source code repository.
sourcepub fn set_repository_id(self, input: Option<String>) -> Self
pub fn set_repository_id(self, input: Option<String>) -> Self
The ID of the source code repository.
sourcepub fn get_repository_id(&self) -> &Option<String>
pub fn get_repository_id(&self) -> &Option<String>
The ID of the source code repository.
sourcepub fn branch_name(self, input: impl Into<String>) -> Self
pub fn branch_name(self, input: impl Into<String>) -> Self
The name of the code repository branch that holds the code that's deployed in Proton.
sourcepub fn set_branch_name(self, input: Option<String>) -> Self
pub fn set_branch_name(self, input: Option<String>) -> Self
The name of the code repository branch that holds the code that's deployed in Proton.
sourcepub fn get_branch_name(&self) -> &Option<String>
pub fn get_branch_name(&self) -> &Option<String>
The name of the code repository branch that holds the code that's deployed in Proton.
Trait Implementations§
source§impl Clone for ServiceBuilder
impl Clone for ServiceBuilder
source§fn clone(&self) -> ServiceBuilder
fn clone(&self) -> ServiceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ServiceBuilder
impl Debug for ServiceBuilder
source§impl Default for ServiceBuilder
impl Default for ServiceBuilder
source§fn default() -> ServiceBuilder
fn default() -> ServiceBuilder
source§impl PartialEq for ServiceBuilder
impl PartialEq for ServiceBuilder
impl StructuralPartialEq for ServiceBuilder
Auto Trait Implementations§
impl Freeze for ServiceBuilder
impl RefUnwindSafe for ServiceBuilder
impl Send for ServiceBuilder
impl Sync for ServiceBuilder
impl Unpin for ServiceBuilder
impl UnwindSafe for ServiceBuilder
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