Module Values.ConfigurationDefinitionSource

The definition of a Quick Setup configuration.

Sourcetype nonrec t = {
  1. id : String_.t option;
    (*

    The ID of the configuration definition.

    *)
  2. localDeploymentAdministrationRoleArn : IAMRoleArn.t option;
    (*

    The ARN of the IAM role used to administrate local configuration deployments.

    *)
  3. localDeploymentExecutionRoleName : ConfigurationDefinitionLocalDeploymentExecutionRoleNameString.t option;
    (*

    The name of the IAM role used to deploy local configurations.

    *)
  4. parameters : ConfigurationParametersMap.t option;
    (*

    A list of key-value pairs containing the required parameters for the configuration type.

    *)
  5. type_ : ConfigurationDefinitionTypeString.t option;
    (*

    The type of the Quick Setup configuration.

    *)
  6. typeVersion : ConfigurationDefinitionTypeVersionString.t option;
    (*

    The version of the Quick Setup type used.

    *)
}
Sourceval make : ?id:??? -> ?localDeploymentAdministrationRoleArn:??? -> ?localDeploymentExecutionRoleName:??? -> ?parameters:??? -> ?type_:??? -> ?typeVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ConfigurationParametersMapKeyString.t ] * [> `String of ConfigurationParametersMapValueString.t ]) list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t