Struct aws_sdk_grafana::operation::update_workspace_configuration::UpdateWorkspaceConfigurationInput
source · #[non_exhaustive]pub struct UpdateWorkspaceConfigurationInput {
pub configuration: Option<String>,
pub workspace_id: Option<String>,
pub grafana_version: Option<String>,
}
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.configuration: Option<String>
The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.
workspace_id: Option<String>
The ID of the workspace to update.
grafana_version: Option<String>
Specifies the version of Grafana to support in the new workspace.
Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4).
To know what versions are available to upgrade to for a specific workspace, see the ListVersions
operation.
Implementations§
source§impl UpdateWorkspaceConfigurationInput
impl UpdateWorkspaceConfigurationInput
sourcepub fn configuration(&self) -> Option<&str>
pub fn configuration(&self) -> Option<&str>
The new configuration string for the workspace. For more information about the format and configuration options available, see Working in your Grafana workspace.
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The ID of the workspace to update.
sourcepub fn grafana_version(&self) -> Option<&str>
pub fn grafana_version(&self) -> Option<&str>
Specifies the version of Grafana to support in the new workspace.
Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4).
To know what versions are available to upgrade to for a specific workspace, see the ListVersions
operation.
source§impl UpdateWorkspaceConfigurationInput
impl UpdateWorkspaceConfigurationInput
sourcepub fn builder() -> UpdateWorkspaceConfigurationInputBuilder
pub fn builder() -> UpdateWorkspaceConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateWorkspaceConfigurationInput
.
Trait Implementations§
source§impl Clone for UpdateWorkspaceConfigurationInput
impl Clone for UpdateWorkspaceConfigurationInput
source§fn clone(&self) -> UpdateWorkspaceConfigurationInput
fn clone(&self) -> UpdateWorkspaceConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateWorkspaceConfigurationInput
impl PartialEq for UpdateWorkspaceConfigurationInput
source§fn eq(&self, other: &UpdateWorkspaceConfigurationInput) -> bool
fn eq(&self, other: &UpdateWorkspaceConfigurationInput) -> bool
self
and other
values to be equal, and is used
by ==
.