#[non_exhaustive]pub struct CreateStreamingImageInput {
pub client_token: Option<String>,
pub description: Option<String>,
pub ec2_image_id: Option<String>,
pub name: Option<String>,
pub studio_id: Option<String>,
pub tags: Option<HashMap<String, 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.client_token: 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.
description: Option<String>
A human-readable description of the streaming image.
ec2_image_id: Option<String>
The ID of an EC2 machine image with which to create this streaming image.
name: Option<String>
A friendly name for a streaming image resource.
studio_id: Option<String>
The studio ID.
A collection of labels, in the form of key-value pairs, that apply to this resource.
Implementations§
source§impl CreateStreamingImageInput
impl CreateStreamingImageInput
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
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) -> Option<&str>
pub fn description(&self) -> Option<&str>
A human-readable description of the streaming image.
sourcepub fn ec2_image_id(&self) -> Option<&str>
pub fn ec2_image_id(&self) -> Option<&str>
The ID of an EC2 machine image with which to create this streaming image.
A collection of labels, in the form of key-value pairs, that apply to this resource.
source§impl CreateStreamingImageInput
impl CreateStreamingImageInput
sourcepub fn builder() -> CreateStreamingImageInputBuilder
pub fn builder() -> CreateStreamingImageInputBuilder
Creates a new builder-style object to manufacture CreateStreamingImageInput
.
Trait Implementations§
source§impl Clone for CreateStreamingImageInput
impl Clone for CreateStreamingImageInput
source§fn clone(&self) -> CreateStreamingImageInput
fn clone(&self) -> CreateStreamingImageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateStreamingImageInput
impl Debug for CreateStreamingImageInput
source§impl PartialEq for CreateStreamingImageInput
impl PartialEq for CreateStreamingImageInput
source§fn eq(&self, other: &CreateStreamingImageInput) -> bool
fn eq(&self, other: &CreateStreamingImageInput) -> bool
self
and other
values to be equal, and is used
by ==
.