#[non_exhaustive]pub struct UpdateProjectInputBuilder { /* private fields */ }Expand description
A builder for UpdateProjectInput.
Implementations§
source§impl UpdateProjectInputBuilder
impl UpdateProjectInputBuilder
sourcepub fn project_id(self, input: impl Into<String>) -> Self
pub fn project_id(self, input: impl Into<String>) -> Self
The ID of the project to update.
This field is required.sourcepub fn set_project_id(self, input: Option<String>) -> Self
pub fn set_project_id(self, input: Option<String>) -> Self
The ID of the project to update.
sourcepub fn get_project_id(&self) -> &Option<String>
pub fn get_project_id(&self) -> &Option<String>
The ID of the project to update.
sourcepub fn project_name(self, input: impl Into<String>) -> Self
pub fn project_name(self, input: impl Into<String>) -> Self
A new friendly name for the project.
This field is required.sourcepub fn set_project_name(self, input: Option<String>) -> Self
pub fn set_project_name(self, input: Option<String>) -> Self
A new friendly name for the project.
sourcepub fn get_project_name(&self) -> &Option<String>
pub fn get_project_name(&self) -> &Option<String>
A new friendly name for the project.
sourcepub fn project_description(self, input: impl Into<String>) -> Self
pub fn project_description(self, input: impl Into<String>) -> Self
A new description for the project.
sourcepub fn set_project_description(self, input: Option<String>) -> Self
pub fn set_project_description(self, input: Option<String>) -> Self
A new description for the project.
sourcepub fn get_project_description(&self) -> &Option<String>
pub fn get_project_description(&self) -> &Option<String>
A new description for the project.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
sourcepub fn build(self) -> Result<UpdateProjectInput, BuildError>
pub fn build(self) -> Result<UpdateProjectInput, BuildError>
Consumes the builder and constructs a UpdateProjectInput.
source§impl UpdateProjectInputBuilder
impl UpdateProjectInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<UpdateProjectOutput, SdkError<UpdateProjectError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdateProjectInputBuilder
impl Clone for UpdateProjectInputBuilder
source§fn clone(&self) -> UpdateProjectInputBuilder
fn clone(&self) -> UpdateProjectInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateProjectInputBuilder
impl Debug for UpdateProjectInputBuilder
source§impl Default for UpdateProjectInputBuilder
impl Default for UpdateProjectInputBuilder
source§fn default() -> UpdateProjectInputBuilder
fn default() -> UpdateProjectInputBuilder
source§impl PartialEq for UpdateProjectInputBuilder
impl PartialEq for UpdateProjectInputBuilder
source§fn eq(&self, other: &UpdateProjectInputBuilder) -> bool
fn eq(&self, other: &UpdateProjectInputBuilder) -> bool
self and other values to be equal, and is used
by ==.