Struct aws_sdk_proton::model::service_template::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ServiceTemplate
.
Implementations§
source§impl Builder
impl Builder
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 template.
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 template.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The time when the service template 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 template 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 template 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 template was last modified.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The service template name as displayed in the developer interface.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The service template name as displayed in the developer interface.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A description of the service template.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A description of the service template.
sourcepub fn recommended_version(self, input: impl Into<String>) -> Self
pub fn recommended_version(self, input: impl Into<String>) -> Self
The recommended version of the service template.
sourcepub fn set_recommended_version(self, input: Option<String>) -> Self
pub fn set_recommended_version(self, input: Option<String>) -> Self
The recommended version of the service template.
sourcepub fn encryption_key(self, input: impl Into<String>) -> Self
pub fn encryption_key(self, input: impl Into<String>) -> Self
The customer provided service template encryption key that's used to encrypt data.
sourcepub fn set_encryption_key(self, input: Option<String>) -> Self
pub fn set_encryption_key(self, input: Option<String>) -> Self
The customer provided service template encryption key that's used to encrypt data.
sourcepub fn pipeline_provisioning(self, input: Provisioning) -> Self
pub fn pipeline_provisioning(self, input: Provisioning) -> Self
If pipelineProvisioning
is true
, a service pipeline is included in the service template. Otherwise, a service pipeline isn't included in the service template.
sourcepub fn set_pipeline_provisioning(self, input: Option<Provisioning>) -> Self
pub fn set_pipeline_provisioning(self, input: Option<Provisioning>) -> Self
If pipelineProvisioning
is true
, a service pipeline is included in the service template. Otherwise, a service pipeline isn't included in the service template.
sourcepub fn build(self) -> ServiceTemplate
pub fn build(self) -> ServiceTemplate
Consumes the builder and constructs a ServiceTemplate
.