Describe Proxy
| networkfirewall_describe_proxy | R Documentation |
Returns the data objects for the specified proxy¶
Description¶
Returns the data objects for the specified proxy.
Usage¶
networkfirewall_describe_proxy(ProxyName, ProxyArn)
Arguments¶
ProxyName |
The descriptive name of the proxy. You can't change the name of a proxy after you create it. You must specify the ARN or the name, and you can specify both. |
ProxyArn |
The Amazon Resource Name (ARN) of a proxy. You must specify the ARN or the name, and you can specify both. |
Value¶
A list with the following syntax:
list(
Proxy = list(
ProxyName = "string",
ProxyArn = "string",
ProxyConfigurationName = "string",
ProxyConfigurationArn = "string",
NatGatewayId = "string",
ProxyState = "ATTACHING"|"ATTACHED"|"DETACHING"|"DETACHED"|"ATTACH_FAILED"|"DETACH_FAILED",
ProxyModifyState = "MODIFYING"|"COMPLETED"|"FAILED",
ListenerProperties = list(
list(
Port = 123,
Type = "HTTP"|"HTTPS"
)
),
TlsInterceptProperties = list(
PcaArn = "string",
TlsInterceptMode = "ENABLED"|"DISABLED"
),
VpcEndpointServiceName = "string",
PrivateDNSName = "string",
CreateTime = as.POSIXct(
"2015-01-01"
),
DeleteTime = as.POSIXct(
"2015-01-01"
),
UpdateTime = as.POSIXct(
"2015-01-01"
),
FailureCode = "string",
FailureMessage = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
),
UpdateToken = "string"
)
Request syntax¶
svc$describe_proxy(
ProxyName = "string",
ProxyArn = "string"
)