aws_sdk_ivs/client/batch_get_stream_key.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`BatchGetStreamKey`](crate::operation::batch_get_stream_key::builders::BatchGetStreamKeyFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`arns(impl Into<String>)`](crate::operation::batch_get_stream_key::builders::BatchGetStreamKeyFluentBuilder::arns) / [`set_arns(Option<Vec::<String>>)`](crate::operation::batch_get_stream_key::builders::BatchGetStreamKeyFluentBuilder::set_arns):<br>required: **true**<br><p>Array of ARNs, one per stream key.</p><br>
7 /// - On success, responds with [`BatchGetStreamKeyOutput`](crate::operation::batch_get_stream_key::BatchGetStreamKeyOutput) with field(s):
8 /// - [`stream_keys(Option<Vec::<StreamKey>>)`](crate::operation::batch_get_stream_key::BatchGetStreamKeyOutput::stream_keys): <p></p>
9 /// - [`errors(Option<Vec::<BatchError>>)`](crate::operation::batch_get_stream_key::BatchGetStreamKeyOutput::errors): <p></p>
10 /// - On failure, responds with [`SdkError<BatchGetStreamKeyError>`](crate::operation::batch_get_stream_key::BatchGetStreamKeyError)
11 pub fn batch_get_stream_key(&self) -> crate::operation::batch_get_stream_key::builders::BatchGetStreamKeyFluentBuilder {
12 crate::operation::batch_get_stream_key::builders::BatchGetStreamKeyFluentBuilder::new(self.handle.clone())
13 }
14}