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 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.
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.
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.
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.
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.
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.
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
source§fn eq(&self, other: &ServiceBuilder) -> bool
fn eq(&self, other: &ServiceBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.