aws-sdk-securityagent 1.1.0

AWS SDK for AWS Security Agent
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`BatchGetArtifactMetadata`](crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`agent_space_id(impl Into<String>)`](crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder::agent_space_id) / [`set_agent_space_id(Option<String>)`](crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder::set_agent_space_id):<br>required: **true**<br>Unique identifier of the agent space<br>
    ///   - [`artifact_ids(impl Into<String>)`](crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder::artifact_ids) / [`set_artifact_ids(Option<Vec::<String>>)`](crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder::set_artifact_ids):<br>required: **true**<br>List of artifact identifiers<br>
    /// - On success, responds with [`BatchGetArtifactMetadataOutput`](crate::operation::batch_get_artifact_metadata::BatchGetArtifactMetadataOutput) with field(s):
    ///   - [`artifact_metadata_list(Vec::<ArtifactMetadataItem>)`](crate::operation::batch_get_artifact_metadata::BatchGetArtifactMetadataOutput::artifact_metadata_list): List of artifact metadata
    /// - On failure, responds with [`SdkError<BatchGetArtifactMetadataError>`](crate::operation::batch_get_artifact_metadata::BatchGetArtifactMetadataError)
    pub fn batch_get_artifact_metadata(&self) -> crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder {
        crate::operation::batch_get_artifact_metadata::builders::BatchGetArtifactMetadataFluentBuilder::new(self.handle.clone())
    }
}