Struct aws_sdk_nimble::operation::update_launch_profile::builders::UpdateLaunchProfileFluentBuilder
source · pub struct UpdateLaunchProfileFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateLaunchProfile
.
Update a launch profile.
Implementations§
source§impl UpdateLaunchProfileFluentBuilder
impl UpdateLaunchProfileFluentBuilder
sourcepub fn as_input(&self) -> &UpdateLaunchProfileInputBuilder
pub fn as_input(&self) -> &UpdateLaunchProfileInputBuilder
Access the UpdateLaunchProfile as a reference.
sourcepub async fn send(
self
) -> Result<UpdateLaunchProfileOutput, SdkError<UpdateLaunchProfileError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateLaunchProfileOutput, SdkError<UpdateLaunchProfileError, 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<UpdateLaunchProfileOutput, UpdateLaunchProfileError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateLaunchProfileOutput, UpdateLaunchProfileError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don’t specify a client token, the Amazon Web Services SDK automatically generates a client token and uses it for the request to ensure idempotency.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description.
sourcepub fn launch_profile_id(self, input: impl Into<String>) -> Self
pub fn launch_profile_id(self, input: impl Into<String>) -> Self
The ID of the launch profile used to control access from the streaming session.
sourcepub fn set_launch_profile_id(self, input: Option<String>) -> Self
pub fn set_launch_profile_id(self, input: Option<String>) -> Self
The ID of the launch profile used to control access from the streaming session.
sourcepub fn get_launch_profile_id(&self) -> &Option<String>
pub fn get_launch_profile_id(&self) -> &Option<String>
The ID of the launch profile used to control access from the streaming session.
sourcepub fn launch_profile_protocol_versions(self, input: impl Into<String>) -> Self
pub fn launch_profile_protocol_versions(self, input: impl Into<String>) -> Self
Appends an item to launchProfileProtocolVersions
.
To override the contents of this collection use set_launch_profile_protocol_versions
.
The version number of the protocol that is used by the launch profile. The only valid version is "2021-03-31".
sourcepub fn set_launch_profile_protocol_versions(
self,
input: Option<Vec<String>>
) -> Self
pub fn set_launch_profile_protocol_versions( self, input: Option<Vec<String>> ) -> Self
The version number of the protocol that is used by the launch profile. The only valid version is "2021-03-31".
sourcepub fn get_launch_profile_protocol_versions(&self) -> &Option<Vec<String>>
pub fn get_launch_profile_protocol_versions(&self) -> &Option<Vec<String>>
The version number of the protocol that is used by the launch profile. The only valid version is "2021-03-31".
sourcepub fn stream_configuration(self, input: StreamConfigurationCreate) -> Self
pub fn stream_configuration(self, input: StreamConfigurationCreate) -> Self
A configuration for a streaming session.
sourcepub fn set_stream_configuration(
self,
input: Option<StreamConfigurationCreate>
) -> Self
pub fn set_stream_configuration( self, input: Option<StreamConfigurationCreate> ) -> Self
A configuration for a streaming session.
sourcepub fn get_stream_configuration(&self) -> &Option<StreamConfigurationCreate>
pub fn get_stream_configuration(&self) -> &Option<StreamConfigurationCreate>
A configuration for a streaming session.
sourcepub fn studio_component_ids(self, input: impl Into<String>) -> Self
pub fn studio_component_ids(self, input: impl Into<String>) -> Self
Appends an item to studioComponentIds
.
To override the contents of this collection use set_studio_component_ids
.
Unique identifiers for a collection of studio components that can be used with this launch profile.
sourcepub fn set_studio_component_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_studio_component_ids(self, input: Option<Vec<String>>) -> Self
Unique identifiers for a collection of studio components that can be used with this launch profile.
sourcepub fn get_studio_component_ids(&self) -> &Option<Vec<String>>
pub fn get_studio_component_ids(&self) -> &Option<Vec<String>>
Unique identifiers for a collection of studio components that can be used with this launch profile.
sourcepub fn set_studio_id(self, input: Option<String>) -> Self
pub fn set_studio_id(self, input: Option<String>) -> Self
The studio ID.
sourcepub fn get_studio_id(&self) -> &Option<String>
pub fn get_studio_id(&self) -> &Option<String>
The studio ID.
Trait Implementations§
source§impl Clone for UpdateLaunchProfileFluentBuilder
impl Clone for UpdateLaunchProfileFluentBuilder
source§fn clone(&self) -> UpdateLaunchProfileFluentBuilder
fn clone(&self) -> UpdateLaunchProfileFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more