pub struct UpdateSceneFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to UpdateScene.
Updates a scene.
Implementations§
source§impl UpdateSceneFluentBuilder
impl UpdateSceneFluentBuilder
sourcepub fn as_input(&self) -> &UpdateSceneInputBuilder
pub fn as_input(&self) -> &UpdateSceneInputBuilder
Access the UpdateScene as a reference.
sourcepub async fn send(
self
) -> Result<UpdateSceneOutput, SdkError<UpdateSceneError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateSceneOutput, SdkError<UpdateSceneError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateSceneOutput, UpdateSceneError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateSceneOutput, UpdateSceneError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workspace_id(self, input: impl Into<String>) -> Self
pub fn workspace_id(self, input: impl Into<String>) -> Self
The ID of the workspace that contains the scene.
sourcepub fn set_workspace_id(self, input: Option<String>) -> Self
pub fn set_workspace_id(self, input: Option<String>) -> Self
The ID of the workspace that contains the scene.
sourcepub fn get_workspace_id(&self) -> &Option<String>
pub fn get_workspace_id(&self) -> &Option<String>
The ID of the workspace that contains the scene.
sourcepub fn set_scene_id(self, input: Option<String>) -> Self
pub fn set_scene_id(self, input: Option<String>) -> Self
The ID of the scene.
sourcepub fn get_scene_id(&self) -> &Option<String>
pub fn get_scene_id(&self) -> &Option<String>
The ID of the scene.
sourcepub fn content_location(self, input: impl Into<String>) -> Self
pub fn content_location(self, input: impl Into<String>) -> Self
The relative path that specifies the location of the content definition file.
sourcepub fn set_content_location(self, input: Option<String>) -> Self
pub fn set_content_location(self, input: Option<String>) -> Self
The relative path that specifies the location of the content definition file.
sourcepub fn get_content_location(&self) -> &Option<String>
pub fn get_content_location(&self) -> &Option<String>
The relative path that specifies the location of the content definition file.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of this scene.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of this scene.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of this scene.
sourcepub fn capabilities(self, input: impl Into<String>) -> Self
pub fn capabilities(self, input: impl Into<String>) -> Self
Appends an item to capabilities.
To override the contents of this collection use set_capabilities.
A list of capabilities that the scene uses to render.
sourcepub fn set_capabilities(self, input: Option<Vec<String>>) -> Self
pub fn set_capabilities(self, input: Option<Vec<String>>) -> Self
A list of capabilities that the scene uses to render.
sourcepub fn get_capabilities(&self) -> &Option<Vec<String>>
pub fn get_capabilities(&self) -> &Option<Vec<String>>
A list of capabilities that the scene uses to render.
sourcepub fn scene_metadata(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn scene_metadata(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to sceneMetadata.
To override the contents of this collection use set_scene_metadata.
The scene metadata.
Trait Implementations§
source§impl Clone for UpdateSceneFluentBuilder
impl Clone for UpdateSceneFluentBuilder
source§fn clone(&self) -> UpdateSceneFluentBuilder
fn clone(&self) -> UpdateSceneFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more