Struct rusoto_appstream::CreateImageBuilderRequest[][src]

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_name: String,
    pub instance_type: String,
    pub name: String,
    pub vpc_config: Option<VpcConfig>,
}

Fields

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].

The description for display.

The image builder name for display.

The information needed to join a Microsoft Active Directory domain.

Enables or disables default internet access for the image builder.

The name of the image used to create the builder.

The instance type to use when launching the image builder.

A unique name for the image builder.

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

Trait Implementations

impl Default for CreateImageBuilderRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateImageBuilderRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateImageBuilderRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateImageBuilderRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations