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: StringThe 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: StringThe 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: StringThe name of the component.
platform: StringThe platform of the component.
semantic_version: StringThe 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).
The tags of the component.
type_: StringThe 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§
Source§impl Clone for ImportComponentRequest
impl Clone for ImportComponentRequest
Source§fn clone(&self) -> ImportComponentRequest
fn clone(&self) -> ImportComponentRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more