Struct aws_sdk_ssm::model::ParameterMetadata[][src]

#[non_exhaustive]
pub struct ParameterMetadata { pub name: Option<String>, pub type: Option<ParameterType>, pub key_id: Option<String>, pub last_modified_date: Option<DateTime>, pub last_modified_user: Option<String>, pub description: Option<String>, pub allowed_pattern: Option<String>, pub version: i64, pub tier: Option<ParameterTier>, pub policies: Option<Vec<ParameterInlinePolicy>>, pub data_type: Option<String>, }
Expand description

Metadata includes information like the ARN of the last user and the date/time the parameter was last used.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
name: Option<String>

The parameter name.

type: Option<ParameterType>

The type of parameter. Valid parameter types include the following: String, StringList, and SecureString.

key_id: Option<String>

The ID of the query key used for this parameter.

last_modified_date: Option<DateTime>

Date the parameter was last changed or updated.

last_modified_user: Option<String>

Amazon Resource Name (ARN) of the Amazon Web Services user who last changed the parameter.

description: Option<String>

Description of the parameter actions.

allowed_pattern: Option<String>

A parameter name can include only the following letters and symbols.

a-zA-Z0-9_.-

version: i64

The parameter version.

tier: Option<ParameterTier>

The parameter tier.

policies: Option<Vec<ParameterInlinePolicy>>

A list of policies associated with a parameter.

data_type: Option<String>

The data type of the parameter, such as text or aws:ec2:image. The default is text.

Implementations

The parameter name.

The type of parameter. Valid parameter types include the following: String, StringList, and SecureString.

The ID of the query key used for this parameter.

Date the parameter was last changed or updated.

Amazon Resource Name (ARN) of the Amazon Web Services user who last changed the parameter.

Description of the parameter actions.

A parameter name can include only the following letters and symbols.

a-zA-Z0-9_.-

The parameter version.

The parameter tier.

A list of policies associated with a parameter.

The data type of the parameter, such as text or aws:ec2:image. The default is text.

Creates a new builder-style object to manufacture ParameterMetadata

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more