Class: Aws::ServiceCatalog::Types::BatchDisassociateServiceActionFromProvisioningArtifactInput

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 BatchDisassociateServiceActionFromProvisioningArtifactInput data as a hash:

{
  service_action_associations: [ # required
    {
      service_action_id: "Id", # required
      product_id: "Id", # required
      provisioning_artifact_id: "Id", # required
    },
  ],
  accept_language: "AcceptLanguage",
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


346
347
348
349
350
# File 'lib/aws-sdk-servicecatalog/types.rb', line 346

class BatchDisassociateServiceActionFromProvisioningArtifactInput < Struct.new(
  :service_action_associations,
  :accept_language)
  include Aws::Structure
end

#service_action_associationsArray<Types::ServiceActionAssociation>

One or more associations, each consisting of the Action ID, the Product ID, and the Provisioning Artifact ID.



346
347
348
349
350
# File 'lib/aws-sdk-servicecatalog/types.rb', line 346

class BatchDisassociateServiceActionFromProvisioningArtifactInput < Struct.new(
  :service_action_associations,
  :accept_language)
  include Aws::Structure
end