Module Route53RecoveryReadiness.ResourceSet

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53recoveryreadiness-resourceset.html

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

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

and r53_resource_record = {
  1. domain_name : string option;
  2. record_set_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-r53resourcerecord.html

and nlb_resource = {
  1. arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-nlbresource.html

and target_resource = {
  1. r53_resource : r53_resource_record option;
  2. nlb_resource : nlb_resource option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-targetresource.html

and dns_target_resource = {
  1. target_resource : target_resource option;
  2. record_type : string option;
  3. domain_name : string option;
  4. hosted_zone_arn : string option;
  5. record_set_id : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53recoveryreadiness-resourceset-dnstargetresource.html

and resource = {
  1. resource_arn : string option;
  2. dns_target_resource : dns_target_resource option;
  3. readiness_scopes : string list option;
  4. component_id : string option;
}

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

type properties = {
  1. resource_set_type : string;
  2. resource_set_name : string option;
  3. resources : resource list;
  4. tags : tag list option;
}

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

val make_properties : resource_set_type:string -> ?resource_set_name:string -> resources:resource list -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_r53_resource_record : ?domain_name:string -> ?record_set_id:string -> unit -> r53_resource_record
val make_nlb_resource : ?arn:string -> unit -> nlb_resource
val make_target_resource : ?r53_resource:r53_resource_record -> ?nlb_resource:nlb_resource -> unit -> target_resource
val make_dns_target_resource : ?target_resource:target_resource -> ?record_type:string -> ?domain_name:string -> ?hosted_zone_arn:string -> ?record_set_id:string -> unit -> dns_target_resource
val make_resource : ?resource_arn:string -> ?dns_target_resource:dns_target_resource -> ?readiness_scopes:string list -> ?component_id:string -> unit -> resource
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_r53_resource_record : r53_resource_record -> Yojson.Safe.t
val yojson_of_nlb_resource : nlb_resource -> Yojson.Safe.t
val yojson_of_target_resource : target_resource -> Yojson.Safe.t
val yojson_of_dns_target_resource : dns_target_resource -> Yojson.Safe.t
val yojson_of_resource : resource -> [> `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. resource_set_arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string