Struct aws_sdk_ssm::model::DocumentIdentifier[][src]

#[non_exhaustive]
pub struct DocumentIdentifier {
Show 15 fields pub name: Option<String>, pub created_date: Option<Instant>, pub display_name: Option<String>, pub owner: Option<String>, pub version_name: Option<String>, pub platform_types: Option<Vec<PlatformType>>, pub document_version: Option<String>, pub document_type: Option<DocumentType>, pub schema_version: Option<String>, pub document_format: Option<DocumentFormat>, pub target_type: Option<String>, pub tags: Option<Vec<Tag>>, pub requires: Option<Vec<DocumentRequires>>, pub review_status: Option<ReviewStatus>, pub author: Option<String>,
}
Expand description

Describes the name of a SSM document.

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 name of the SSM document.

created_date: Option<Instant>

The date the SSM document was created.

display_name: Option<String>

An optional field where you can specify a friendly name for the SSM document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.

owner: Option<String>

The Amazon Web Services user account that created the document.

version_name: Option<String>

An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.

platform_types: Option<Vec<PlatformType>>

The operating system platform.

document_version: Option<String>

The document version.

document_type: Option<DocumentType>

The document type.

schema_version: Option<String>

The schema version.

document_format: Option<DocumentFormat>

The document format, either JSON or YAML.

target_type: Option<String>

The target type which defines the kinds of resources the document can run on. For example, /AWS::EC2::Instance. For a list of valid resource types, see Amazon Web Services resource and property types reference in the CloudFormation User Guide.

tags: Option<Vec<Tag>>

The tags, or metadata, that have been applied to the document.

requires: Option<Vec<DocumentRequires>>

A list of SSM documents required by a document. For example, an ApplicationConfiguration document requires an ApplicationConfigurationSchema document.

review_status: Option<ReviewStatus>

The current status of a document review.

author: Option<String>

The user in your organization who created the document.

Implementations

The name of the SSM document.

The date the SSM document was created.

An optional field where you can specify a friendly name for the SSM document. This value can differ for each version of the document. If you want to update this value, see UpdateDocument.

The Amazon Web Services user account that created the document.

An optional field specifying the version of the artifact associated with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and can't be changed.

The operating system platform.

The document version.

The document type.

The schema version.

The document format, either JSON or YAML.

The target type which defines the kinds of resources the document can run on. For example, /AWS::EC2::Instance. For a list of valid resource types, see Amazon Web Services resource and property types reference in the CloudFormation User Guide.

The tags, or metadata, that have been applied to the document.

A list of SSM documents required by a document. For example, an ApplicationConfiguration document requires an ApplicationConfigurationSchema document.

The current status of a document review.

The user in your organization who created the document.

Creates a new builder-style object to manufacture DocumentIdentifier

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)

recently added

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