Skip to content

Commit

Permalink
Add TLS structures to preview model (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcelenza authored and dastbe committed Aug 6, 2019
1 parent 26a5e05 commit 442348c
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions appmesh-preview/service-model.json
Original file line number Diff line number Diff line change
Expand Up @@ -1128,6 +1128,21 @@
},
"documentation": ""
},
"ListenerTls": {
"type": "structure",
"required": [
"certificate",
"mode"
],
"members": {
"certificate": {
"shape": "ListenerTlsCertificate"
},
"mode": {
"shape": "ListenerTlsMode"
}
}
},
"DeleteMeshInput": {
"type": "structure",
"required": [
Expand Down Expand Up @@ -1610,6 +1625,14 @@
"min": 0,
"max": 100
},
"ListenerTlsMode": {
"type": "string",
"enum": [
"DISABLED",
"PERMISSIVE",
"STRICT"
]
},
"TagValue": {
"type": "string",
"min": 0,
Expand Down Expand Up @@ -2458,6 +2481,14 @@
"min": 1,
"max": 25
},
"ListenerTlsCertificate": {
"type": "structure",
"members": {
"acm": {
"shape": "ListenerTlsAcmCertificate"
}
}
},
"ListVirtualNodesLimit": {
"type": "integer",
"box": true,
Expand Down Expand Up @@ -2886,6 +2917,9 @@
"portMapping": {
"shape": "PortMapping",
"documentation": "<p>The port mapping information for the listener.</p>"
},
"tls": {
"shape": "ListenerTls"
}
},
"documentation": "<p>An object representing a listener for a virtual node.</p>"
Expand Down Expand Up @@ -3601,6 +3635,17 @@
"min": 1,
"max": 50
},
"ListenerTlsAcmCertificate": {
"type": "structure",
"required": [
"certificateArn"
],
"members": {
"certificateArn": {
"shape": "Arn"
}
}
},
"TagKey": {
"type": "string",
"min": 1,
Expand Down

0 comments on commit 442348c

Please sign in to comment.