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

Class: Aws::ServiceCatalog::Types::CopyProductInput

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

Overview

Note:

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

{
  accept_language: "AcceptLanguage",
  source_product_arn: "ProductArn", # required
  target_product_id: "Id",
  target_product_name: "ProductViewName",
  source_provisioning_artifact_identifiers: [
    {
      "Id" => "ProvisioningArtifactPropertyValue",
    },
  ],
  copy_options: ["CopyTags"], # accepts CopyTags
  idempotency_token: "IdempotencyToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

Returns:

  • (String)

    The language code.

#copy_optionsArray<String>

The copy options. If the value is CopyTags, the tags from the source product are copied to the target product.

Returns:

  • (Array<String>)

    The copy options.

#idempotency_tokenString

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.

Returns:

  • (String)

    A unique identifier that you provide to ensure idempotency.

#source_product_arnString

The Amazon Resource Name (ARN) of the source product.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the source product.

#source_provisioning_artifact_identifiersArray<Hash<String,String>>

The identifiers of the provisioning artifacts (also known as versions) of the product to copy. By default, all provisioning artifacts are copied.

Returns:

  • (Array<Hash<String,String>>)

    The identifiers of the provisioning artifacts (also known as versions) of the product to copy.

#target_product_idString

The identifier of the target product. By default, a new product is created.

Returns:

  • (String)

    The identifier of the target product.

#target_product_nameString

A name for the target product. The default is the name of the source product.

Returns:

  • (String)

    A name for the target product.