#[non_exhaustive]pub struct UpdateThemePermissionsInput {
pub aws_account_id: Option<String>,
pub theme_id: Option<String>,
pub grant_permissions: Option<Vec<ResourcePermission>>,
pub revoke_permissions: Option<Vec<ResourcePermission>>,
}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 of the Amazon Web Services account that contains the theme.
theme_id: Option<String>The ID for the theme.
grant_permissions: Option<Vec<ResourcePermission>>A list of resource permissions to be granted for the theme.
revoke_permissions: Option<Vec<ResourcePermission>>A list of resource permissions to be revoked from the theme.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThemePermissions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateThemePermissions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateThemePermissions>
Creates a new builder-style object to manufacture UpdateThemePermissionsInput
The ID of the Amazon Web Services account that contains the theme.
A list of resource permissions to be granted for the theme.
A list of resource permissions to be revoked from the theme.
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 UpdateThemePermissionsInput
impl Send for UpdateThemePermissionsInput
impl Sync for UpdateThemePermissionsInput
impl Unpin for UpdateThemePermissionsInput
impl UnwindSafe for UpdateThemePermissionsInput
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