Module Values.UpdateConfigurationProfileRequestSource

Updates a configuration profile.

Sourcetype nonrec t = {
  1. applicationId : Id.t;
    (*

    The application ID.

    *)
  2. configurationProfileId : Id.t;
    (*

    The ID of the configuration profile.

    *)
  3. name : LongName.t option;
    (*

    The name of the configuration profile.

    *)
  4. description : Description.t option;
    (*

    A description of the configuration profile.

    *)
  5. retrievalRoleArn : RoleArn.t option;
    (*

    The ARN of an IAM role with permission to access the configuration at the specified LocationUri. A retrieval role ARN is not required for configurations stored in CodePipeline or the AppConfig hosted configuration store. It is required for all other sources that store your configuration.

    *)
  6. validators : ValidatorList.t option;
    (*

    A list of methods for validating the configuration.

    *)
  7. kmsKeyIdentifier : KmsKeyIdentifierOrEmpty.t option;
    (*

    The identifier for a Key Management Service key to encrypt new configuration data versions in the AppConfig hosted configuration store. This attribute is only used for hosted configuration types. The identifier can be an KMS key ID, alias, or the Amazon Resource Name (ARN) of the key ID or alias. To encrypt data managed in other configuration stores, see the documentation for how to specify an KMS key for that particular service.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?retrievalRoleArn:??? -> ?validators:??? -> ?kmsKeyIdentifier:??? -> applicationId:Id.t -> configurationProfileId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of StringWithLengthBetween0And32768.t ]) list ] list | `String of Id.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