Struct aws_sdk_ssm::input::get_parameters_input::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for GetParametersInput
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn names(self, input: impl Into<String>) -> Self
pub fn names(self, input: impl Into<String>) -> Self
Appends an item to names
.
To override the contents of this collection use set_names
.
Names of the parameters for which you want to query information.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
sourcepub fn set_names(self, input: Option<Vec<String>>) -> Self
pub fn set_names(self, input: Option<Vec<String>>) -> Self
Names of the parameters for which you want to query information.
To query by parameter label, use "Name": "name:label"
. To query by parameter version, use "Name": "name:version"
.
sourcepub fn with_decryption(self, input: bool) -> Self
pub fn with_decryption(self, input: bool) -> Self
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
sourcepub fn set_with_decryption(self, input: Option<bool>) -> Self
pub fn set_with_decryption(self, input: Option<bool>) -> Self
Return decrypted secure string value. Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
sourcepub fn build(self) -> Result<GetParametersInput, BuildError>
pub fn build(self) -> Result<GetParametersInput, BuildError>
Consumes the builder and constructs a GetParametersInput
.