Struct aws_sdk_ssm::client::fluent_builders::DescribeDocument
source · [−]pub struct DescribeDocument { /* private fields */ }
Expand description
Fluent builder constructing a request to DescribeDocument
.
Describes the specified Amazon Web Services Systems Manager document (SSM document).
Implementations
sourceimpl DescribeDocument
impl DescribeDocument
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeDocument, AwsResponseRetryClassifier>, SdkError<DescribeDocumentError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeDocument, AwsResponseRetryClassifier>, SdkError<DescribeDocumentError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DescribeDocumentOutput, SdkError<DescribeDocumentError>>
pub async fn send(
self
) -> Result<DescribeDocumentOutput, SdkError<DescribeDocumentError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn document_version(self, input: impl Into<String>) -> Self
pub fn document_version(self, input: impl Into<String>) -> Self
The document version for which you want information. Can be a specific version or the default version.
sourcepub fn set_document_version(self, input: Option<String>) -> Self
pub fn set_document_version(self, input: Option<String>) -> Self
The document version for which you want information. Can be a specific version or the default version.
sourcepub fn version_name(self, input: impl Into<String>) -> Self
pub fn version_name(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_version_name(self, input: Option<String>) -> Self
pub fn set_version_name(self, input: Option<String>) -> Self
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.
Trait Implementations
sourceimpl Clone for DescribeDocument
impl Clone for DescribeDocument
sourcefn clone(&self) -> DescribeDocument
fn clone(&self) -> DescribeDocument
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more