Module Transfer.Certificate

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-certificate.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. inactive_date : string option;
  2. usage : string;
  3. private_key : string option;
  4. description : string option;
  5. certificate_chain : string option;
  6. active_date : string option;
  7. tags : tag list option;
  8. certificate : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-transfer-certificate.html;

val make_properties : ?inactive_date:string -> usage:string -> ?private_key:string -> ?description:string -> ?certificate_chain:string -> ?active_date:string -> ?tags:tag list -> certificate:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. status : string;
  3. type_ : string;
  4. serial : string;
  5. certificate_id : string;
  6. not_before_date : string;
  7. not_after_date : string;
  8. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string