You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Imagebuilder::Types::ImportComponentRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ImportComponentRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "ResourceName", # required
  semantic_version: "VersionNumber", # required
  description: "NonEmptyString",
  change_description: "NonEmptyString",
  type: "BUILD", # required, accepts BUILD, TEST
  format: "SHELL", # required, accepts SHELL
  platform: "Windows", # required, accepts Windows, Linux
  data: "NonEmptyString",
  uri: "Uri",
  kms_key_id: "NonEmptyString",
  tags: {
    "TagKey" => "TagValue",
  },
  client_token: "ClientToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#change_descriptionString

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.

Returns:

  • (String)

    The change description of the component.

#client_tokenString

The idempotency token of the component.

Returns:

  • (String)

    The idempotency token of the component.

#dataString

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.

Returns:

  • (String)

    The data of the component.

#descriptionString

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

Returns:

  • (String)

    The description of the component.

#formatString

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

Possible values:

  • SHELL

Returns:

  • (String)

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

#kms_key_idString

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

Returns:

  • (String)

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

#nameString

The name of the component.

Returns:

  • (String)

    The name of the component.

#platformString

The platform of the component.

Possible values:

  • Windows
  • Linux

Returns:

  • (String)

    The platform of the component.

#semantic_versionString

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

Returns:

  • (String)

    The semantic version of the component.

#tagsHash<String,String>

The tags of the component.

Returns:

  • (Hash<String,String>)

    The tags of the component.

#typeString

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

Possible values:

  • BUILD
  • TEST

Returns:

  • (String)

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

#uriString

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.

Returns:

  • (String)

    The uri of the component.