fulfillment_options
Creates, updates, deletes, gets or lists a fulfillment_options resource.
Overview
| Name | fulfillment_options |
| Type | Resource |
| Id | aws.marketplace_discovery.fulfillment_options |
Fields
The following fields are returned by SELECT queries:
- list_fulfillment_options
| Name | Datatype | Description |
|---|---|---|
amazon_machine_image_fulfillment_option | object | An Amazon Machine Image (AMI) fulfillment option for EC2 deployment. |
api_fulfillment_option | object | An API-based fulfillment option for programmatic integration. |
cloud_formation_fulfillment_option | object | An AWS CloudFormation template fulfillment option for infrastructure deployment. |
container_fulfillment_option | object | A container image fulfillment option for container-based deployment. |
data_exchange_fulfillment_option | object | An AWS Data Exchange fulfillment option for data set delivery. |
ec_2_image_builder_component_fulfillment_option | object | An EC2 Image Builder component fulfillment option. |
eks_add_on_fulfillment_option | object | An Amazon EKS add-on fulfillment option. |
helm_fulfillment_option | object | A Helm chart fulfillment option for Kubernetes deployment. |
professional_services_fulfillment_option | object | A professional services fulfillment option. |
saas_fulfillment_option | object | A Software as a Service (SaaS) fulfillment option. |
sage_maker_algorithm_fulfillment_option | object | An Amazon SageMaker algorithm fulfillment option. |
sage_maker_model_fulfillment_option | object | An Amazon SageMaker model fulfillment option. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_fulfillment_options | select | region | Returns the fulfillment options available for a product, including deployment details such as version information, operating systems, usage instructions, and release notes. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_fulfillment_options
Returns the fulfillment options available for a product, including deployment details such as version information, operating systems, usage instructions, and release notes.
SELECT
amazon_machine_image_fulfillment_option,
api_fulfillment_option,
cloud_formation_fulfillment_option,
container_fulfillment_option,
data_exchange_fulfillment_option,
ec_2_image_builder_component_fulfillment_option,
eks_add_on_fulfillment_option,
helm_fulfillment_option,
professional_services_fulfillment_option,
saas_fulfillment_option,
sage_maker_algorithm_fulfillment_option,
sage_maker_model_fulfillment_option
FROM aws.marketplace_discovery.fulfillment_options
WHERE region = '{{ region }}' -- required
;