provisioningType property

ProvisioningType? provisioningType
final

The provisioning behavior of the type. AWS CloudFormation determines the provisioning type during registration, based on the types of handlers in the schema handler package submitted.

Valid values include:

  • FULLY_MUTABLE: The type includes an update handler to process updates to the type during stack update operations.
  • IMMUTABLE: The type does not include an update handler, so the type cannot be updated and must instead be replaced during stack update operations.
  • NON_PROVISIONABLE: The type does not include all of the following handlers, and therefore cannot actually be provisioned.
    • create
    • read
    • delete

Implementation

final ProvisioningType? provisioningType;