Struct aws_sdk_ssm::operation::get_parameter_history::builders::GetParameterHistoryInputBuilder
source · #[non_exhaustive]pub struct GetParameterHistoryInputBuilder { /* private fields */ }
Expand description
A builder for GetParameterHistoryInput
.
Implementations§
source§impl GetParameterHistoryInputBuilder
impl GetParameterHistoryInputBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name or Amazon Resource Name (ARN) of the parameter for which you want to review history. For parameters shared with you from another account, you must use the full ARN.
This field is required.sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
The name or Amazon Resource Name (ARN) of the parameter for which you want to review history. For parameters shared with you from another account, you must use the full ARN.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
The name or Amazon Resource Name (ARN) of the parameter for which you want to review history. For parameters shared with you from another account, you must use the full ARN.
sourcepub fn with_decryption(self, input: bool) -> Self
pub fn with_decryption(self, input: bool) -> Self
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 values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
sourcepub fn get_with_decryption(&self) -> &Option<bool>
pub fn get_with_decryption(&self) -> &Option<bool>
Return decrypted values for secure string parameters. This flag is ignored for String
and StringList
parameter types.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn build(self) -> Result<GetParameterHistoryInput, BuildError>
pub fn build(self) -> Result<GetParameterHistoryInput, BuildError>
Consumes the builder and constructs a GetParameterHistoryInput
.
source§impl GetParameterHistoryInputBuilder
impl GetParameterHistoryInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetParameterHistoryOutput, SdkError<GetParameterHistoryError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetParameterHistoryOutput, SdkError<GetParameterHistoryError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetParameterHistoryInputBuilder
impl Clone for GetParameterHistoryInputBuilder
source§fn clone(&self) -> GetParameterHistoryInputBuilder
fn clone(&self) -> GetParameterHistoryInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetParameterHistoryInputBuilder
impl Default for GetParameterHistoryInputBuilder
source§fn default() -> GetParameterHistoryInputBuilder
fn default() -> GetParameterHistoryInputBuilder
source§impl PartialEq for GetParameterHistoryInputBuilder
impl PartialEq for GetParameterHistoryInputBuilder
source§fn eq(&self, other: &GetParameterHistoryInputBuilder) -> bool
fn eq(&self, other: &GetParameterHistoryInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.