aws_sdk_ssoadmin/client/
get_permissions_boundary_for_permission_set.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 [`GetPermissionsBoundaryForPermissionSet`](crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`instance_arn(impl Into<String>)`](crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder::instance_arn) / [`set_instance_arn(Option<String>)`](crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder::set_instance_arn):<br>required: **true**<br><p>The ARN of the IAM Identity Center instance under which the operation will be executed.</p><br>
7    ///   - [`permission_set_arn(impl Into<String>)`](crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder::permission_set_arn) / [`set_permission_set_arn(Option<String>)`](crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder::set_permission_set_arn):<br>required: **true**<br><p>The ARN of the <code>PermissionSet</code>.</p><br>
8    /// - On success, responds with [`GetPermissionsBoundaryForPermissionSetOutput`](crate::operation::get_permissions_boundary_for_permission_set::GetPermissionsBoundaryForPermissionSetOutput) with field(s):
9    ///   - [`permissions_boundary(Option<PermissionsBoundary>)`](crate::operation::get_permissions_boundary_for_permission_set::GetPermissionsBoundaryForPermissionSetOutput::permissions_boundary): <p>The permissions boundary attached to the specified permission set.</p>
10    /// - On failure, responds with [`SdkError<GetPermissionsBoundaryForPermissionSetError>`](crate::operation::get_permissions_boundary_for_permission_set::GetPermissionsBoundaryForPermissionSetError)
11    pub fn get_permissions_boundary_for_permission_set(
12        &self,
13    ) -> crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder {
14        crate::operation::get_permissions_boundary_for_permission_set::builders::GetPermissionsBoundaryForPermissionSetFluentBuilder::new(
15            self.handle.clone(),
16        )
17    }
18}