[][src]Struct rusoto_appstream::CreateImageBuilderRequest

pub struct CreateImageBuilderRequest {
    pub appstream_agent_version: Option<String>,
    pub description: Option<String>,
    pub display_name: Option<String>,
    pub domain_join_info: Option<DomainJoinInfo>,
    pub enable_default_internet_access: Option<bool>,
    pub image_arn: Option<String>,
    pub image_name: Option<String>,
    pub instance_type: String,
    pub name: String,
    pub tags: Option<HashMap<String, String>>,
    pub vpc_config: Option<VpcConfig>,
}

Fields

appstream_agent_version: Option<String>

The version of the AppStream 2.0 agent to use for this image builder. To use the latest version of the AppStream 2.0 agent, specify [LATEST].

description: Option<String>

The description to display.

display_name: Option<String>

The image builder name to display.

domain_join_info: Option<DomainJoinInfo>

The name of the directory and organizational unit (OU) to use to join the image builder to a Microsoft Active Directory domain.

enable_default_internet_access: Option<bool>

Enables or disables default internet access for the image builder.

image_arn: Option<String>

The ARN of the public, private, or shared image to use.

image_name: Option<String>

The name of the image used to create the image builder.

instance_type: String

The instance type to use when launching the image builder.

name: String

A unique name for the image builder.

tags: Option<HashMap<String, String>>

The tags to associate with the image builder. A tag is a key-value pair, and the value is optional. For example, Environment=Test. If you do not specify a value, Environment=.

Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following special characters:

_ . : / = + \ - @

If you do not specify a value, the value is set to an empty string.

For more information about tags, see Tagging Your Resources in the Amazon AppStream 2.0 Developer Guide.

vpc_config: Option<VpcConfig>

The VPC configuration for the image builder. You can specify only one subnet.

Trait Implementations

impl PartialEq<CreateImageBuilderRequest> for CreateImageBuilderRequest[src]

impl Default for CreateImageBuilderRequest[src]

impl Clone for CreateImageBuilderRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateImageBuilderRequest[src]

impl Serialize for CreateImageBuilderRequest[src]

Auto Trait Implementations

impl Send for CreateImageBuilderRequest

impl Sync for CreateImageBuilderRequest

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self