[][src]Struct rusoto_imagebuilder::ImportComponentRequest

pub struct ImportComponentRequest {
    pub change_description: Option<String>,
    pub client_token: String,
    pub data: Option<String>,
    pub description: Option<String>,
    pub format: String,
    pub kms_key_id: Option<String>,
    pub name: String,
    pub platform: String,
    pub semantic_version: String,
    pub tags: Option<HashMap<String, String>>,
    pub type_: String,
    pub uri: Option<String>,
}

Fields

change_description: Option<String>

The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of this component.

client_token: String

The idempotency token of the component.

data: Option<String>

The data of the component. Used to specify the data inline. Either data or uri can be used to specify the data within the component.

description: Option<String>

The description of the component. Describes the contents of the component.

format: String

The format of the resource that you want to import as a component.

kms_key_id: Option<String>

The ID of the KMS key that should be used to encrypt this component.

name: String

The name of the component.

platform: String

The platform of the component.

semantic_version: String

The semantic version of the component. This version follows the semantic version syntax. For example, major.minor.patch. This could be versioned like software (2.0.1) or like a date (2019.12.01).

tags: Option<HashMap<String, String>>

The tags of the component.

type_: String

The type of the component denotes whether the component is used to build the image or only to test it.

uri: Option<String>

The uri of the component. Must be an S3 URL and the requester must have permission to access the S3 bucket. If you use S3, you can specify component content up to your service quota. Either data or uri can be used to specify the data within the component.

Trait Implementations

impl Clone for ImportComponentRequest[src]

impl Debug for ImportComponentRequest[src]

impl Default for ImportComponentRequest[src]

impl PartialEq<ImportComponentRequest> for ImportComponentRequest[src]

impl Serialize for ImportComponentRequest[src]

impl StructuralPartialEq for ImportComponentRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.