aws-sdk-cloudformation 1.111.0

AWS SDK for AWS CloudFormation
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 [`ListStackSetOperations`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`stack_set_name(impl Into<String>)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::stack_set_name) / [`set_stack_set_name(Option<String>)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::set_stack_set_name):<br>required: **true**<br><p>The name or unique ID of the StackSet that you want to get operation summaries for.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of items to return. (You received this token from a previous call.)</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a <code>NextToken</code> value that you can assign to the <code>NextToken</code> request parameter to get the next set of results.</p><br>
    ///   - [`call_as(CallAs)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::call_as) / [`set_call_as(Option<CallAs>)`](crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::set_call_as):<br>required: **false**<br><p>\[Service-managed permissions\] Specifies whether you are acting as an account administrator in the organization's management account or as a delegated administrator in a member account.</p> <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for StackSets with self-managed permissions.</p> <ul>  <li>   <p>If you are signed in to the management account, specify <code>SELF</code>.</p></li>  <li>   <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>   <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated administrator</a> in the <i>CloudFormation User Guide</i>.</p></li> </ul><br>
    /// - On success, responds with [`ListStackSetOperationsOutput`](crate::operation::list_stack_set_operations::ListStackSetOperationsOutput) with field(s):
    ///   - [`summaries(Option<Vec::<StackSetOperationSummary>>)`](crate::operation::list_stack_set_operations::ListStackSetOperationsOutput::summaries): <p>A list of <code>StackSetOperationSummary</code> structures that contain summary information about operations for the specified StackSet.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_stack_set_operations::ListStackSetOperationsOutput::next_token): <p>If the request doesn't return all results, <code>NextToken</code> is set to a token. To retrieve the next set of results, call <code>ListOperationResults</code> again and assign that token to the request object's <code>NextToken</code> parameter. If there are no remaining results, <code>NextToken</code> is set to <code>null</code>.</p>
    /// - On failure, responds with [`SdkError<ListStackSetOperationsError>`](crate::operation::list_stack_set_operations::ListStackSetOperationsError)
    pub fn list_stack_set_operations(&self) -> crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder {
        crate::operation::list_stack_set_operations::builders::ListStackSetOperationsFluentBuilder::new(self.handle.clone())
    }
}