Class: Aws::ServiceCatalog::Types::BatchDisassociateServiceActionFromProvisioningArtifactInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::BatchDisassociateServiceActionFromProvisioningArtifactInput
- Defined in:
- gems/aws-sdk-servicecatalog/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",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accept_language ⇒ String
The language code.
-
#service_action_associations ⇒ Array<Types::ServiceActionAssociation>
One or more associations, each consisting of the Action ID, the Product ID, and the Provisioning Artifact ID.
Instance Attribute Details
#accept_language ⇒ String
The language code.
en
- English (default)jp
- Japanesezh
- Chinese
385 386 387 388 389 390 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 385 class BatchDisassociateServiceActionFromProvisioningArtifactInput < Struct.new( :service_action_associations, :accept_language) SENSITIVE = [] include Aws::Structure end |
#service_action_associations ⇒ Array<Types::ServiceActionAssociation>
One or more associations, each consisting of the Action ID, the Product ID, and the Provisioning Artifact ID.
385 386 387 388 389 390 |
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 385 class BatchDisassociateServiceActionFromProvisioningArtifactInput < Struct.new( :service_action_associations, :accept_language) SENSITIVE = [] include Aws::Structure end |