Struct rusoto_ssm::PutParameterRequest[][src]

pub struct PutParameterRequest {
    pub allowed_pattern: Option<String>,
    pub description: Option<String>,
    pub key_id: Option<String>,
    pub name: String,
    pub overwrite: Option<bool>,
    pub type_: String,
    pub value: String,
}

Fields

A regular expression used to validate the parameter value. For example, for String types with values restricted to numbers, you can specify the following: AllowedPattern=^\d+$

Information about the parameter that you want to add to the system.

Do not enter personally identifiable information in this field.

The KMS Key ID that you want to use to encrypt a parameter when you choose the SecureString data type. If you don't specify a key ID, the system uses the default key associated with your AWS account.

The fully qualified name of the parameter that you want to add to the system. The fully qualified name includes the complete hierarchy of the parameter path and name. For example: /Dev/DBServer/MySQL/db-string13

For information about parameter name requirements and restrictions, see About Creating Systems Manager Parameters in the AWS Systems Manager User Guide.

The maximum length constraint listed below includes capacity for additional system attributes that are not part of the name. The maximum length for the fully qualified parameter name is 1011 characters.

Overwrite an existing parameter. If not specified, will default to "false".

The type of parameter that you want to add to the system.

The parameter value that you want to add to the system.

Trait Implementations

impl Default for PutParameterRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for PutParameterRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for PutParameterRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PutParameterRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations