logo
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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more