aws_sdk_partnercentralchannel/client/accept_channel_handshake.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 [`AcceptChannelHandshake`](crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`catalog(impl Into<String>)`](crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder::catalog) / [`set_catalog(Option<String>)`](crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder::set_catalog):<br>required: **true**<br><p>The catalog identifier for the handshake request.</p><br>
7 /// - [`identifier(impl Into<String>)`](crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder::identifier) / [`set_identifier(Option<String>)`](crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder::set_identifier):<br>required: **true**<br><p>The unique identifier of the channel handshake to accept.</p><br>
8 /// - On success, responds with [`AcceptChannelHandshakeOutput`](crate::operation::accept_channel_handshake::AcceptChannelHandshakeOutput) with field(s):
9 /// - [`channel_handshake_detail(Option<AcceptChannelHandshakeDetail>)`](crate::operation::accept_channel_handshake::AcceptChannelHandshakeOutput::channel_handshake_detail): <p>Details of the accepted channel handshake.</p>
10 /// - On failure, responds with [`SdkError<AcceptChannelHandshakeError>`](crate::operation::accept_channel_handshake::AcceptChannelHandshakeError)
11 pub fn accept_channel_handshake(&self) -> crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder {
12 crate::operation::accept_channel_handshake::builders::AcceptChannelHandshakeFluentBuilder::new(self.handle.clone())
13 }
14}