pub struct Builder { /* private fields */ }
Expand description
A builder for ComponentConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn component_arn(self, input: impl Into<String>) -> Self
pub fn component_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the component.
sourcepub fn set_component_arn(self, input: Option<String>) -> Self
pub fn set_component_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the component.
sourcepub fn parameters(self, input: ComponentParameter) -> Self
pub fn parameters(self, input: ComponentParameter) -> Self
Appends an item to parameters
.
To override the contents of this collection use set_parameters
.
A group of parameter settings that are used to configure the component for a specific recipe.
sourcepub fn set_parameters(self, input: Option<Vec<ComponentParameter>>) -> Self
pub fn set_parameters(self, input: Option<Vec<ComponentParameter>>) -> Self
A group of parameter settings that are used to configure the component for a specific recipe.
sourcepub fn build(self) -> ComponentConfiguration
pub fn build(self) -> ComponentConfiguration
Consumes the builder and constructs a ComponentConfiguration
.