Class: Aws::ServiceCatalog::Types::CreateProvisioningArtifactInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass CreateProvisioningArtifactInput data as a hash:

{
  accept_language: "AcceptLanguage",
  product_id: "Id", # required
  parameters: { # required
    name: "ProvisioningArtifactName",
    description: "ProvisioningArtifactDescription",
    info: {
      "ProvisioningArtifactInfoKey" => "ProvisioningArtifactInfoValue",
    },
    type: "CLOUD_FORMATION_TEMPLATE", # accepts CLOUD_FORMATION_TEMPLATE, MARKETPLACE_AMI, MARKETPLACE_CAR
    disable_template_validation: false,
  },
  idempotency_token: "IdempotencyToken", # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


1334
1335
1336
1337
1338
1339
1340
1341
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1334

class CreateProvisioningArtifactInput < Struct.new(
  :accept_language,
  :product_id,
  :parameters,
  :idempotency_token)
  SENSITIVE = []
  include Aws::Structure
end

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

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


1334
1335
1336
1337
1338
1339
1340
1341
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1334

class CreateProvisioningArtifactInput < Struct.new(
  :accept_language,
  :product_id,
  :parameters,
  :idempotency_token)
  SENSITIVE = []
  include Aws::Structure
end

#parametersTypes::ProvisioningArtifactProperties

The configuration for the provisioning artifact.



1334
1335
1336
1337
1338
1339
1340
1341
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1334

class CreateProvisioningArtifactInput < Struct.new(
  :accept_language,
  :product_id,
  :parameters,
  :idempotency_token)
  SENSITIVE = []
  include Aws::Structure
end

#product_idString

The product identifier.

Returns:

  • (String)


1334
1335
1336
1337
1338
1339
1340
1341
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1334

class CreateProvisioningArtifactInput < Struct.new(
  :accept_language,
  :product_id,
  :parameters,
  :idempotency_token)
  SENSITIVE = []
  include Aws::Structure
end