Struct aws_sdk_mobile::input::update_project_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateProjectInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn contents(self, input: Blob) -> Self
pub fn contents(self, input: Blob) -> Self
ZIP or YAML file which contains project configuration to be updated. This should be the contents of the file downloaded from the URL provided in an export project operation.
sourcepub fn set_contents(self, input: Option<Blob>) -> Self
pub fn set_contents(self, input: Option<Blob>) -> Self
ZIP or YAML file which contains project configuration to be updated. This should be the contents of the file downloaded from the URL provided in an export project operation.
sourcepub fn project_id(self, input: impl Into<String>) -> Self
pub fn project_id(self, input: impl Into<String>) -> Self
Unique project identifier.
sourcepub fn set_project_id(self, input: Option<String>) -> Self
pub fn set_project_id(self, input: Option<String>) -> Self
Unique project identifier.
sourcepub fn build(self) -> Result<UpdateProjectInput, BuildError>
pub fn build(self) -> Result<UpdateProjectInput, BuildError>
Consumes the builder and constructs a UpdateProjectInput
.