Skip to main content

fulfillment_options

Creates, updates, deletes, gets or lists a fulfillment_options resource.

Overview

Namefulfillment_options
TypeResource
Idaws.marketplace_discovery.fulfillment_options

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
amazon_machine_image_fulfillment_optionobjectAn Amazon Machine Image (AMI) fulfillment option for EC2 deployment.
api_fulfillment_optionobjectAn API-based fulfillment option for programmatic integration.
cloud_formation_fulfillment_optionobjectAn AWS CloudFormation template fulfillment option for infrastructure deployment.
container_fulfillment_optionobjectA container image fulfillment option for container-based deployment.
data_exchange_fulfillment_optionobjectAn AWS Data Exchange fulfillment option for data set delivery.
ec_2_image_builder_component_fulfillment_optionobjectAn EC2 Image Builder component fulfillment option.
eks_add_on_fulfillment_optionobjectAn Amazon EKS add-on fulfillment option.
helm_fulfillment_optionobjectA Helm chart fulfillment option for Kubernetes deployment.
professional_services_fulfillment_optionobjectA professional services fulfillment option.
saas_fulfillment_optionobjectA Software as a Service (SaaS) fulfillment option.
sage_maker_algorithm_fulfillment_optionobjectAn Amazon SageMaker algorithm fulfillment option.
sage_maker_model_fulfillment_optionobjectAn Amazon SageMaker model fulfillment option.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_fulfillment_optionsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;