QuicksightClient

Struct QuicksightClient 

Source
pub struct QuicksightClient { /* private fields */ }
Expand description

A client for the Amazon QuickSight API.

Implementations§

Source§

impl QuicksightClient

Source

pub fn new(region: Region) -> QuicksightClient

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

Source

pub fn new_with<P, D>( request_dispatcher: D, credentials_provider: P, region: Region, ) -> QuicksightClient
where P: ProvideAwsCredentials + Send + Sync + 'static, D: DispatchSignedRequest + Send + Sync + 'static,

Source

pub fn new_with_client(client: Client, region: Region) -> QuicksightClient

Trait Implementations§

Source§

impl Clone for QuicksightClient

Source§

fn clone(&self) -> QuicksightClient

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Quicksight for QuicksightClient

Source§

fn cancel_ingestion<'life0, 'async_trait>( &'life0 self, input: CancelIngestionRequest, ) -> Pin<Box<dyn Future<Output = Result<CancelIngestionResponse, RusotoError<CancelIngestionError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Cancels an ongoing ingestion of data into SPICE.

Source§

fn create_dashboard<'life0, 'async_trait>( &'life0 self, input: CreateDashboardRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateDashboardResponse, RusotoError<CreateDashboardError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a dashboard from a template. To first create a template, see the CreateTemplate API operation.

A dashboard is an entity in QuickSight that identifies QuickSight reports, created from analyses. You can share QuickSight dashboards. With the right permissions, you can create scheduled email reports from them. The CreateDashboard, DescribeDashboard, and ListDashboardsByUser API operations act on the dashboard entity. If you have the correct permissions, you can create a dashboard from a template that exists in a different AWS account.

Source§

fn create_data_set<'life0, 'async_trait>( &'life0 self, input: CreateDataSetRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateDataSetResponse, RusotoError<CreateDataSetError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a dataset.

Source§

fn create_data_source<'life0, 'async_trait>( &'life0 self, input: CreateDataSourceRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateDataSourceResponse, RusotoError<CreateDataSourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a data source.

Source§

fn create_group<'life0, 'async_trait>( &'life0 self, input: CreateGroupRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateGroupResponse, RusotoError<CreateGroupError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates an Amazon QuickSight group.

The permissions resource is arn:aws:quicksight:us-east-1:<relevant-aws-account-id>:group/default/<group-name> .

The response is a group object.

Source§

fn create_group_membership<'life0, 'async_trait>( &'life0 self, input: CreateGroupMembershipRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateGroupMembershipResponse, RusotoError<CreateGroupMembershipError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Adds an Amazon QuickSight user to an Amazon QuickSight group.

Source§

fn create_iam_policy_assignment<'life0, 'async_trait>( &'life0 self, input: CreateIAMPolicyAssignmentRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateIAMPolicyAssignmentResponse, RusotoError<CreateIAMPolicyAssignmentError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates an assignment with one specified IAM policy, identified by its Amazon Resource Name (ARN). This policy will be assigned to specified groups or users of Amazon QuickSight. The users and groups need to be in the same namespace.

Source§

fn create_ingestion<'life0, 'async_trait>( &'life0 self, input: CreateIngestionRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateIngestionResponse, RusotoError<CreateIngestionError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates and starts a new SPICE ingestion on a dataset

Any ingestions operating on tagged datasets inherit the same tags automatically for use in access control. For an example, see How do I create an IAM policy to control access to Amazon EC2 resources using tags? in the AWS Knowledge Center. Tags are visible on the tagged dataset, but not on the ingestion resource.

Source§

fn create_template<'life0, 'async_trait>( &'life0 self, input: CreateTemplateRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateTemplateResponse, RusotoError<CreateTemplateError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a template from an existing QuickSight analysis or template. You can use the resulting template to create a dashboard.

A template is an entity in QuickSight that encapsulates the metadata required to create an analysis and that you can use to create s dashboard. A template adds a layer of abstraction by using placeholders to replace the dataset associated with the analysis. You can use templates to create dashboards by replacing dataset placeholders with datasets that follow the same schema that was used to create the source analysis and template.

Source§

fn create_template_alias<'life0, 'async_trait>( &'life0 self, input: CreateTemplateAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateTemplateAliasResponse, RusotoError<CreateTemplateAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a template alias for a template.

Source§

fn create_theme<'life0, 'async_trait>( &'life0 self, input: CreateThemeRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateThemeResponse, RusotoError<CreateThemeError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a theme.

A theme is set of configuration options for color and layout. Themes apply to analyses and dashboards. For more information, see Using Themes in Amazon QuickSight in the Amazon QuickSight User Guide.

Source§

fn create_theme_alias<'life0, 'async_trait>( &'life0 self, input: CreateThemeAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<CreateThemeAliasResponse, RusotoError<CreateThemeAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates a theme alias for a theme.

Source§

fn delete_dashboard<'life0, 'async_trait>( &'life0 self, input: DeleteDashboardRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteDashboardResponse, RusotoError<DeleteDashboardError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes a dashboard.

Source§

fn delete_data_set<'life0, 'async_trait>( &'life0 self, input: DeleteDataSetRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteDataSetResponse, RusotoError<DeleteDataSetError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes a dataset.

Source§

fn delete_data_source<'life0, 'async_trait>( &'life0 self, input: DeleteDataSourceRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteDataSourceResponse, RusotoError<DeleteDataSourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes the data source permanently. This action breaks all the datasets that reference the deleted data source.

Source§

fn delete_group<'life0, 'async_trait>( &'life0 self, input: DeleteGroupRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteGroupResponse, RusotoError<DeleteGroupError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Removes a user group from Amazon QuickSight.

Source§

fn delete_group_membership<'life0, 'async_trait>( &'life0 self, input: DeleteGroupMembershipRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteGroupMembershipResponse, RusotoError<DeleteGroupMembershipError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Removes a user from a group so that the user is no longer a member of the group.

Source§

fn delete_iam_policy_assignment<'life0, 'async_trait>( &'life0 self, input: DeleteIAMPolicyAssignmentRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteIAMPolicyAssignmentResponse, RusotoError<DeleteIAMPolicyAssignmentError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes an existing IAM policy assignment.

Source§

fn delete_template<'life0, 'async_trait>( &'life0 self, input: DeleteTemplateRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteTemplateResponse, RusotoError<DeleteTemplateError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes a template.

Source§

fn delete_template_alias<'life0, 'async_trait>( &'life0 self, input: DeleteTemplateAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteTemplateAliasResponse, RusotoError<DeleteTemplateAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes the item that the specified template alias points to. If you provide a specific alias, you delete the version of the template that the alias points to.

Source§

fn delete_theme<'life0, 'async_trait>( &'life0 self, input: DeleteThemeRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteThemeResponse, RusotoError<DeleteThemeError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes a theme.

Source§

fn delete_theme_alias<'life0, 'async_trait>( &'life0 self, input: DeleteThemeAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteThemeAliasResponse, RusotoError<DeleteThemeAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes the version of the theme that the specified theme alias points to. If you provide a specific alias, you delete the version of the theme that the alias points to.

Source§

fn delete_user<'life0, 'async_trait>( &'life0 self, input: DeleteUserRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteUserResponse, RusotoError<DeleteUserError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes the Amazon QuickSight user that is associated with the identity of the AWS Identity and Access Management (IAM) user or role that's making the call. The IAM user isn't deleted as a result of this call.

Source§

fn delete_user_by_principal_id<'life0, 'async_trait>( &'life0 self, input: DeleteUserByPrincipalIdRequest, ) -> Pin<Box<dyn Future<Output = Result<DeleteUserByPrincipalIdResponse, RusotoError<DeleteUserByPrincipalIdError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes a user identified by its principal ID.

Source§

fn describe_dashboard<'life0, 'async_trait>( &'life0 self, input: DescribeDashboardRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeDashboardResponse, RusotoError<DescribeDashboardError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Provides a summary for a dashboard.

Source§

fn describe_dashboard_permissions<'life0, 'async_trait>( &'life0 self, input: DescribeDashboardPermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeDashboardPermissionsResponse, RusotoError<DescribeDashboardPermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes read and write permissions for a dashboard.

Source§

fn describe_data_set<'life0, 'async_trait>( &'life0 self, input: DescribeDataSetRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeDataSetResponse, RusotoError<DescribeDataSetError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes a dataset.

Source§

fn describe_data_set_permissions<'life0, 'async_trait>( &'life0 self, input: DescribeDataSetPermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeDataSetPermissionsResponse, RusotoError<DescribeDataSetPermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes the permissions on a dataset.

The permissions resource is arn:aws:quicksight:region:aws-account-id:dataset/data-set-id.

Source§

fn describe_data_source<'life0, 'async_trait>( &'life0 self, input: DescribeDataSourceRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeDataSourceResponse, RusotoError<DescribeDataSourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes a data source.

Source§

fn describe_data_source_permissions<'life0, 'async_trait>( &'life0 self, input: DescribeDataSourcePermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeDataSourcePermissionsResponse, RusotoError<DescribeDataSourcePermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes the resource permissions for a data source.

Source§

fn describe_group<'life0, 'async_trait>( &'life0 self, input: DescribeGroupRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeGroupResponse, RusotoError<DescribeGroupError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Returns an Amazon QuickSight group's description and Amazon Resource Name (ARN).

Source§

fn describe_iam_policy_assignment<'life0, 'async_trait>( &'life0 self, input: DescribeIAMPolicyAssignmentRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeIAMPolicyAssignmentResponse, RusotoError<DescribeIAMPolicyAssignmentError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes an existing IAM policy assignment, as specified by the assignment name.

Source§

fn describe_ingestion<'life0, 'async_trait>( &'life0 self, input: DescribeIngestionRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeIngestionResponse, RusotoError<DescribeIngestionError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes a SPICE ingestion.

Source§

fn describe_template<'life0, 'async_trait>( &'life0 self, input: DescribeTemplateRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeTemplateResponse, RusotoError<DescribeTemplateError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes a template's metadata.

Source§

fn describe_template_alias<'life0, 'async_trait>( &'life0 self, input: DescribeTemplateAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeTemplateAliasResponse, RusotoError<DescribeTemplateAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes the template alias for a template.

Source§

fn describe_template_permissions<'life0, 'async_trait>( &'life0 self, input: DescribeTemplatePermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeTemplatePermissionsResponse, RusotoError<DescribeTemplatePermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes read and write permissions on a template.

Source§

fn describe_theme<'life0, 'async_trait>( &'life0 self, input: DescribeThemeRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeThemeResponse, RusotoError<DescribeThemeError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes a theme.

Source§

fn describe_theme_alias<'life0, 'async_trait>( &'life0 self, input: DescribeThemeAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeThemeAliasResponse, RusotoError<DescribeThemeAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes the alias for a theme.

Source§

fn describe_theme_permissions<'life0, 'async_trait>( &'life0 self, input: DescribeThemePermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeThemePermissionsResponse, RusotoError<DescribeThemePermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Describes the read and write permissions for a theme.

Source§

fn describe_user<'life0, 'async_trait>( &'life0 self, input: DescribeUserRequest, ) -> Pin<Box<dyn Future<Output = Result<DescribeUserResponse, RusotoError<DescribeUserError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Returns information about a user, given the user name.

Source§

fn get_dashboard_embed_url<'life0, 'async_trait>( &'life0 self, input: GetDashboardEmbedUrlRequest, ) -> Pin<Box<dyn Future<Output = Result<GetDashboardEmbedUrlResponse, RusotoError<GetDashboardEmbedUrlError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Generates a URL and authorization code that you can embed in your web server code. Before you use this command, make sure that you have configured the dashboards and permissions.

Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the combination of URL and authorization code:

  • They must be used together.

  • They can be used one time only.

  • They are valid for 5 minutes after you run this command.

  • The resulting user session is valid for 10 hours.

For more information, see Embedding Amazon QuickSight Dashboards in the Amazon QuickSight User Guide or Embedding Amazon QuickSight Dashboards in the Amazon QuickSight API Reference.

Source§

fn list_dashboard_versions<'life0, 'async_trait>( &'life0 self, input: ListDashboardVersionsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListDashboardVersionsResponse, RusotoError<ListDashboardVersionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the versions of the dashboards in the QuickSight subscription.

Source§

fn list_dashboards<'life0, 'async_trait>( &'life0 self, input: ListDashboardsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListDashboardsResponse, RusotoError<ListDashboardsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists dashboards in an AWS account.

Source§

fn list_data_sets<'life0, 'async_trait>( &'life0 self, input: ListDataSetsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListDataSetsResponse, RusotoError<ListDataSetsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all of the datasets belonging to the current AWS account in an AWS Region.

The permissions resource is arn:aws:quicksight:region:aws-account-id:dataset/*.

Source§

fn list_data_sources<'life0, 'async_trait>( &'life0 self, input: ListDataSourcesRequest, ) -> Pin<Box<dyn Future<Output = Result<ListDataSourcesResponse, RusotoError<ListDataSourcesError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists data sources in current AWS Region that belong to this AWS account.

Source§

fn list_group_memberships<'life0, 'async_trait>( &'life0 self, input: ListGroupMembershipsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListGroupMembershipsResponse, RusotoError<ListGroupMembershipsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists member users in a group.

Source§

fn list_groups<'life0, 'async_trait>( &'life0 self, input: ListGroupsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListGroupsResponse, RusotoError<ListGroupsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all user groups in Amazon QuickSight.

Source§

fn list_iam_policy_assignments<'life0, 'async_trait>( &'life0 self, input: ListIAMPolicyAssignmentsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListIAMPolicyAssignmentsResponse, RusotoError<ListIAMPolicyAssignmentsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists IAM policy assignments in the current Amazon QuickSight account.

Source§

fn list_iam_policy_assignments_for_user<'life0, 'async_trait>( &'life0 self, input: ListIAMPolicyAssignmentsForUserRequest, ) -> Pin<Box<dyn Future<Output = Result<ListIAMPolicyAssignmentsForUserResponse, RusotoError<ListIAMPolicyAssignmentsForUserError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the IAM policy assignments, including the Amazon Resource Names (ARNs) for the IAM policies assigned to the specified user and group or groups that the user belongs to.

Source§

fn list_ingestions<'life0, 'async_trait>( &'life0 self, input: ListIngestionsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListIngestionsResponse, RusotoError<ListIngestionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists the history of SPICE ingestions for a dataset.

Source§

fn list_tags_for_resource<'life0, 'async_trait>( &'life0 self, input: ListTagsForResourceRequest, ) -> Pin<Box<dyn Future<Output = Result<ListTagsForResourceResponse, RusotoError<ListTagsForResourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists the tags assigned to a resource.

Source§

fn list_template_aliases<'life0, 'async_trait>( &'life0 self, input: ListTemplateAliasesRequest, ) -> Pin<Box<dyn Future<Output = Result<ListTemplateAliasesResponse, RusotoError<ListTemplateAliasesError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the aliases of a template.

Source§

fn list_template_versions<'life0, 'async_trait>( &'life0 self, input: ListTemplateVersionsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListTemplateVersionsResponse, RusotoError<ListTemplateVersionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the versions of the templates in the current Amazon QuickSight account.

Source§

fn list_templates<'life0, 'async_trait>( &'life0 self, input: ListTemplatesRequest, ) -> Pin<Box<dyn Future<Output = Result<ListTemplatesResponse, RusotoError<ListTemplatesError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the templates in the current Amazon QuickSight account.

Source§

fn list_theme_aliases<'life0, 'async_trait>( &'life0 self, input: ListThemeAliasesRequest, ) -> Pin<Box<dyn Future<Output = Result<ListThemeAliasesResponse, RusotoError<ListThemeAliasesError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the aliases of a theme.

Source§

fn list_theme_versions<'life0, 'async_trait>( &'life0 self, input: ListThemeVersionsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListThemeVersionsResponse, RusotoError<ListThemeVersionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the versions of the themes in the current AWS account.

Source§

fn list_themes<'life0, 'async_trait>( &'life0 self, input: ListThemesRequest, ) -> Pin<Box<dyn Future<Output = Result<ListThemesResponse, RusotoError<ListThemesError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists all the themes in the current AWS account.

Source§

fn list_user_groups<'life0, 'async_trait>( &'life0 self, input: ListUserGroupsRequest, ) -> Pin<Box<dyn Future<Output = Result<ListUserGroupsResponse, RusotoError<ListUserGroupsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Lists the Amazon QuickSight groups that an Amazon QuickSight user is a member of.

Source§

fn list_users<'life0, 'async_trait>( &'life0 self, input: ListUsersRequest, ) -> Pin<Box<dyn Future<Output = Result<ListUsersResponse, RusotoError<ListUsersError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Returns a list of all of the Amazon QuickSight users belonging to this account.

Source§

fn register_user<'life0, 'async_trait>( &'life0 self, input: RegisterUserRequest, ) -> Pin<Box<dyn Future<Output = Result<RegisterUserResponse, RusotoError<RegisterUserError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates an Amazon QuickSight user, whose identity is associated with the AWS Identity and Access Management (IAM) identity or role specified in the request.

Source§

fn search_dashboards<'life0, 'async_trait>( &'life0 self, input: SearchDashboardsRequest, ) -> Pin<Box<dyn Future<Output = Result<SearchDashboardsResponse, RusotoError<SearchDashboardsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Searchs for dashboards that belong to a user.

Source§

fn tag_resource<'life0, 'async_trait>( &'life0 self, input: TagResourceRequest, ) -> Pin<Box<dyn Future<Output = Result<TagResourceResponse, RusotoError<TagResourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Assigns one or more tags (key-value pairs) to the specified QuickSight resource.

Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. You can use the TagResource operation with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag.

You can associate as many as 50 tags with a resource. QuickSight supports tagging on data set, data source, dashboard, and template.

Tagging for QuickSight works in a similar way to tagging for other AWS services, except for the following:

  • You can't use tags to track AWS costs for QuickSight. This restriction is because QuickSight costs are based on users and SPICE capacity, which aren't taggable resources.

  • QuickSight doesn't currently support the Tag Editor for AWS Resource Groups.

Source§

fn untag_resource<'life0, 'async_trait>( &'life0 self, input: UntagResourceRequest, ) -> Pin<Box<dyn Future<Output = Result<UntagResourceResponse, RusotoError<UntagResourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Removes a tag or tags from a resource.

Source§

fn update_dashboard<'life0, 'async_trait>( &'life0 self, input: UpdateDashboardRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDashboardResponse, RusotoError<UpdateDashboardError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates a dashboard in an AWS account.

Source§

fn update_dashboard_permissions<'life0, 'async_trait>( &'life0 self, input: UpdateDashboardPermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDashboardPermissionsResponse, RusotoError<UpdateDashboardPermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates read and write permissions on a dashboard.

Source§

fn update_dashboard_published_version<'life0, 'async_trait>( &'life0 self, input: UpdateDashboardPublishedVersionRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDashboardPublishedVersionResponse, RusotoError<UpdateDashboardPublishedVersionError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the published version of a dashboard.

Source§

fn update_data_set<'life0, 'async_trait>( &'life0 self, input: UpdateDataSetRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDataSetResponse, RusotoError<UpdateDataSetError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates a dataset.

Source§

fn update_data_set_permissions<'life0, 'async_trait>( &'life0 self, input: UpdateDataSetPermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDataSetPermissionsResponse, RusotoError<UpdateDataSetPermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the permissions on a dataset.

The permissions resource is arn:aws:quicksight:region:aws-account-id:dataset/data-set-id.

Source§

fn update_data_source<'life0, 'async_trait>( &'life0 self, input: UpdateDataSourceRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDataSourceResponse, RusotoError<UpdateDataSourceError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates a data source.

Source§

fn update_data_source_permissions<'life0, 'async_trait>( &'life0 self, input: UpdateDataSourcePermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateDataSourcePermissionsResponse, RusotoError<UpdateDataSourcePermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the permissions to a data source.

Source§

fn update_group<'life0, 'async_trait>( &'life0 self, input: UpdateGroupRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateGroupResponse, RusotoError<UpdateGroupError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Changes a group description.

Source§

fn update_iam_policy_assignment<'life0, 'async_trait>( &'life0 self, input: UpdateIAMPolicyAssignmentRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateIAMPolicyAssignmentResponse, RusotoError<UpdateIAMPolicyAssignmentError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates an existing IAM policy assignment. This operation updates only the optional parameter or parameters that are specified in the request.

Source§

fn update_template<'life0, 'async_trait>( &'life0 self, input: UpdateTemplateRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateTemplateResponse, RusotoError<UpdateTemplateError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates a template from an existing Amazon QuickSight analysis or another template.

Source§

fn update_template_alias<'life0, 'async_trait>( &'life0 self, input: UpdateTemplateAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateTemplateAliasResponse, RusotoError<UpdateTemplateAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the template alias of a template.

Source§

fn update_template_permissions<'life0, 'async_trait>( &'life0 self, input: UpdateTemplatePermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateTemplatePermissionsResponse, RusotoError<UpdateTemplatePermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the resource permissions for a template.

Source§

fn update_theme<'life0, 'async_trait>( &'life0 self, input: UpdateThemeRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateThemeResponse, RusotoError<UpdateThemeError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates a theme.

Source§

fn update_theme_alias<'life0, 'async_trait>( &'life0 self, input: UpdateThemeAliasRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateThemeAliasResponse, RusotoError<UpdateThemeAliasError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates an alias of a theme.

Source§

fn update_theme_permissions<'life0, 'async_trait>( &'life0 self, input: UpdateThemePermissionsRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateThemePermissionsResponse, RusotoError<UpdateThemePermissionsError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates the resource permissions for a theme. Permissions apply to the action to grant or revoke permissions on, for example "quicksight:DescribeTheme".

Theme permissions apply in groupings. Valid groupings include the following for the three levels of permissions, which are user, owner, or no permissions:

  • User

    • "quicksight:DescribeTheme"

    • "quicksight:DescribeThemeAlias"

    • "quicksight:ListThemeAliases"

    • "quicksight:ListThemeVersions"

  • Owner

    • "quicksight:DescribeTheme"

    • "quicksight:DescribeThemeAlias"

    • "quicksight:ListThemeAliases"

    • "quicksight:ListThemeVersions"

    • "quicksight:DeleteTheme"

    • "quicksight:UpdateTheme"

    • "quicksight:CreateThemeAlias"

    • "quicksight:DeleteThemeAlias"

    • "quicksight:UpdateThemeAlias"

    • "quicksight:UpdateThemePermissions"

    • "quicksight:DescribeThemePermissions"

  • To specify no permissions, omit the permissions list.

Source§

fn update_user<'life0, 'async_trait>( &'life0 self, input: UpdateUserRequest, ) -> Pin<Box<dyn Future<Output = Result<UpdateUserResponse, RusotoError<UpdateUserError>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Updates an Amazon QuickSight user.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more