ElasticLoadBalancingV2.TrustStoreRevocation
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-truststorerevocation.html
type revocation_content = {
s3_object_version : string option;
s3_bucket : string option;
s3_key : string option;
revocation_type : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-truststorerevocation-revocationcontent.html
and trust_store_revocation = {
number_of_revoked_entries : int option;
trust_store_arn : string option;
revocation_type : string option;
revocation_id : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-truststorerevocation-truststorerevocation.html
type properties = {
revocation_contents : revocation_content list option;
trust_store_arn : string option;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-truststorerevocation.html;
val make_properties :
?revocation_contents:revocation_content list ->
?trust_store_arn:string ->
unit ->
properties
val make_revocation_content :
?s3_object_version:string ->
?s3_bucket:string ->
?s3_key:string ->
?revocation_type:string ->
unit ->
revocation_content
val make_trust_store_revocation :
?number_of_revoked_entries:int ->
?trust_store_arn:string ->
?revocation_type:string ->
?revocation_id:string ->
unit ->
trust_store_revocation
val yojson_of_revocation_content :
revocation_content ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_trust_store_revocation :
trust_store_revocation ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes