aws-sdk-organizations 1.119.1

AWS SDK for AWS Organizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListOutboundResponsibilityTransfers`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`r#type(ResponsibilityTransferType)`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::type) / [`set_type(Option<ResponsibilityTransferType>)`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::set_type):<br>required: **true**<br><p>The type of responsibility. Currently, only <code>BILLING</code> is supported.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::set_next_token):<br>required: **false**<br><p>The parameter for receiving additional results if you receive a <code>NextToken</code> response in a previous request. A <code>NextToken</code> response indicates that more output is available. Set this parameter to the value of the previous call's <code>NextToken</code> response to indicate where the output should continue from.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of items to return in the response. If more results exist than the specified <code>MaxResults</code> value, a token is included in the response so that you can retrieve the remaining results.</p><br>
    /// - On success, responds with [`ListOutboundResponsibilityTransfersOutput`](crate::operation::list_outbound_responsibility_transfers::ListOutboundResponsibilityTransfersOutput) with field(s):
    ///   - [`responsibility_transfers(Option<Vec::<ResponsibilityTransfer>>)`](crate::operation::list_outbound_responsibility_transfers::ListOutboundResponsibilityTransfersOutput::responsibility_transfers): <p>An array of <code>ResponsibilityTransfer</code> objects. Contains details for a transfer.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_outbound_responsibility_transfers::ListOutboundResponsibilityTransfersOutput::next_token): <p>If present, indicates that more output is available than is included in the current response. Use this value in the <code>NextToken</code> request parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until the <code>NextToken</code> response element comes back as <code>null</code>.</p>
    /// - On failure, responds with [`SdkError<ListOutboundResponsibilityTransfersError>`](crate::operation::list_outbound_responsibility_transfers::ListOutboundResponsibilityTransfersError)
    pub fn list_outbound_responsibility_transfers(
        &self,
    ) -> crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder {
        crate::operation::list_outbound_responsibility_transfers::builders::ListOutboundResponsibilityTransfersFluentBuilder::new(self.handle.clone())
    }
}