Struct aws_sdk_quicksight::input::CreateFolderInput
source · [−]#[non_exhaustive]pub struct CreateFolderInput {
pub aws_account_id: Option<String>,
pub folder_id: Option<String>,
pub name: Option<String>,
pub folder_type: Option<FolderType>,
pub parent_folder_arn: Option<String>,
pub permissions: Option<Vec<ResourcePermission>>,
pub tags: Option<Vec<Tag>>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.aws_account_id: Option<String>The ID for the Amazon Web Services account where you want to create the folder.
folder_id: Option<String>The ID of the folder.
name: Option<String>The name of the folder.
folder_type: Option<FolderType>The type of folder. By default, folderType is SHARED.
parent_folder_arn: Option<String>The Amazon Resource Name (ARN) for the parent folder.
ParentFolderArn can be null. An empty parentFolderArn creates a root-level folder.
permissions: Option<Vec<ResourcePermission>>A structure that describes the principals and the resource-level permissions of a folder.
To specify no permissions, omit Permissions.
Tags for the folder.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateFolder, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateFolder, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateFolder>
Creates a new builder-style object to manufacture CreateFolderInput
The ID for the Amazon Web Services account where you want to create the folder.
The type of folder. By default, folderType is SHARED.
The Amazon Resource Name (ARN) for the parent folder.
ParentFolderArn can be null. An empty parentFolderArn creates a root-level folder.
A structure that describes the principals and the resource-level permissions of a folder.
To specify no permissions, omit Permissions.
Tags for the folder.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CreateFolderInput
impl Send for CreateFolderInput
impl Sync for CreateFolderInput
impl Unpin for CreateFolderInput
impl UnwindSafe for CreateFolderInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more