#[non_exhaustive]pub struct CreateAppBlockInputBuilder { /* private fields */ }Expand description
A builder for CreateAppBlockInput.
Implementations§
source§impl CreateAppBlockInputBuilder
impl CreateAppBlockInputBuilder
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the app block.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the app block.
sourcepub fn display_name(self, input: impl Into<String>) -> Self
pub fn display_name(self, input: impl Into<String>) -> Self
The display name of the app block. This is not displayed to the user.
sourcepub fn set_display_name(self, input: Option<String>) -> Self
pub fn set_display_name(self, input: Option<String>) -> Self
The display name of the app block. This is not displayed to the user.
sourcepub fn source_s3_location(self, input: S3Location) -> Self
pub fn source_s3_location(self, input: S3Location) -> Self
The source S3 location of the app block.
sourcepub fn set_source_s3_location(self, input: Option<S3Location>) -> Self
pub fn set_source_s3_location(self, input: Option<S3Location>) -> Self
The source S3 location of the app block.
sourcepub fn setup_script_details(self, input: ScriptDetails) -> Self
pub fn setup_script_details(self, input: ScriptDetails) -> Self
The setup script details of the app block.
sourcepub fn set_setup_script_details(self, input: Option<ScriptDetails>) -> Self
pub fn set_setup_script_details(self, input: Option<ScriptDetails>) -> Self
The setup script details of the app block.
Adds a key-value pair to tags.
To override the contents of this collection use set_tags.
The tags assigned to the app block.
The tags assigned to the app block.
sourcepub fn build(self) -> Result<CreateAppBlockInput, BuildError>
pub fn build(self) -> Result<CreateAppBlockInput, BuildError>
Consumes the builder and constructs a CreateAppBlockInput.
Trait Implementations§
source§impl Clone for CreateAppBlockInputBuilder
impl Clone for CreateAppBlockInputBuilder
source§fn clone(&self) -> CreateAppBlockInputBuilder
fn clone(&self) -> CreateAppBlockInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreateAppBlockInputBuilder
impl Debug for CreateAppBlockInputBuilder
source§impl Default for CreateAppBlockInputBuilder
impl Default for CreateAppBlockInputBuilder
source§fn default() -> CreateAppBlockInputBuilder
fn default() -> CreateAppBlockInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CreateAppBlockInputBuilder> for CreateAppBlockInputBuilder
impl PartialEq<CreateAppBlockInputBuilder> for CreateAppBlockInputBuilder
source§fn eq(&self, other: &CreateAppBlockInputBuilder) -> bool
fn eq(&self, other: &CreateAppBlockInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.