Module Values.SsmParameterConfigurationSource

Configuration for a single Parameter in the Amazon Web Services Systems Manager (SSM) Parameter Store in a given Region.

Sourcetype nonrec t = {
  1. amiAccountId : AccountId.t option;
    (*

    Specify the account that will own the Parameter in a given Region. During distribution, this account must be specified in distribution settings as a target account for the Region.

    *)
  2. parameterName : SsmParameterName.t;
    (*

    This is the name of the Parameter in the target Region or account. The image distribution creates the Parameter if it doesn't already exist. Otherwise, it updates the parameter.

    *)
  3. dataType : SsmParameterDataType.t option;
    (*

    The data type specifies what type of value the Parameter contains. We recommend that you use data type aws:ec2:image.

    *)
}
Sourceval context_ : string
Sourceval make : ?amiAccountId:??? -> ?dataType:??? -> parameterName:SsmParameterName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountId.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