Values.CreateHostedConfigurationVersionRequestSourceCreates a new configuration in the AppConfig hosted configuration store. If you're creating a feature flag, we recommend you familiarize yourself with the JSON schema for feature flag data. For more information, see Type reference for AWS.AppConfig.FeatureFlags in the AppConfig User Guide.
type nonrec t = {applicationId : Id.t;The application ID.
*)configurationProfileId : Id.t;The configuration profile ID.
*)description : Description.t option;A description of the configuration.
*)content : Blob.t;The configuration data, as bytes. AppConfig accepts any type of data, including text formats like JSON or TOML, or binary formats like protocol buffers or compressed data.
*)contentType : StringWithLengthBetween1And255.t;A standard MIME type describing the format of the configuration content. For more information, see Content-Type.
*)latestVersionNumber : Integer.t option;An optional locking token used to prevent race conditions from overwriting configuration updates when creating a new version. To ensure your data is not overwritten when creating multiple hosted configuration versions in rapid succession, specify the version number of the latest hosted configuration version.
*)versionLabel : VersionLabel.t option;An optional, user-defined label for the AppConfig hosted configuration version. This value must contain at least one non-numeric character. For example, "v2.2.0".
*)}