Module Values.CreateProjectProfileOutputSource

Creates a project profile.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The ID of the domain where a project profile is created.

    *)
  2. id : ProjectProfileId.t option;
    (*

    Project profile ID.

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

    Project profile name.

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

    A project profile description.

    *)
  5. status : Status.t option;
    (*

    Project profile status.

    *)
  6. projectResourceTags : ProjectResourceTagParameters.t option;
    (*

    The resource tags of the project profile.

    *)
  7. allowCustomProjectResourceTags : Boolean.t option;
    (*

    Specifies whether custom project resource tags are supported.

    *)
  8. projectResourceTagsDescription : Description.t option;
    (*

    Field viewable through the UI that provides a project user with the allowed resource tag specifications.

    *)
  9. environmentConfigurations : EnvironmentConfigurationsList.t option;
    (*

    Environment configurations of a project profile.

    *)
  10. createdBy : CreatedBy.t option;
    (*

    A user who created a project profile.

    *)
  11. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    A timestamp at which a project profile is created.

    *)
  12. lastUpdatedAt : SyntheticTimestamp_date_time.t option;
    (*

    A timestamp when a project profile was last updated.

    *)
  13. domainUnitId : DomainUnitId.t option;
    (*

    The ID of the domain unit where a project profile is created.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  6. | `ThrottlingException of ThrottlingException.t
  7. | `UnauthorizedException of UnauthorizedException.t
  8. | `ValidationException of ValidationException.t
  9. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainId:??? -> ?id:??? -> ?name:??? -> ?description:??? -> ?status:??? -> ?projectResourceTags:??? -> ?allowCustomProjectResourceTags:??? -> ?projectResourceTagsDescription:??? -> ?environmentConfigurations:??? -> ?createdBy:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?domainUnitId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of DeploymentOrder.t | `List of [> `String of AccountPoolId.t ] list | `String of TagKey.t | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of EnvironmentConfigurationParameterName.t ]) list ] list | `String of ParameterStorePath.t ]) list ]) list ] list | `String of DomainId.t | `Timestamp of SyntheticTimestamp_date_time.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