Describe Tls Inspection Configuration
| networkfirewall_describe_tls_inspection_configuration | R Documentation |
Returns the data objects for the specified TLS inspection configuration¶
Description¶
Returns the data objects for the specified TLS inspection configuration.
Usage¶
networkfirewall_describe_tls_inspection_configuration(
TLSInspectionConfigurationArn, TLSInspectionConfigurationName)
Arguments¶
TLSInspectionConfigurationArnThe Amazon Resource Name (ARN) of the TLS inspection configuration.
You must specify the ARN or the name, and you can specify both.
TLSInspectionConfigurationNameThe descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it.
You must specify the ARN or the name, and you can specify both.
Value¶
A list with the following syntax:
list(
UpdateToken = "string",
TLSInspectionConfiguration = list(
ServerCertificateConfigurations = list(
list(
ServerCertificates = list(
list(
ResourceArn = "string"
)
),
Scopes = list(
list(
Sources = list(
list(
AddressDefinition = "string"
)
),
Destinations = list(
list(
AddressDefinition = "string"
)
),
SourcePorts = list(
list(
FromPort = 123,
ToPort = 123
)
),
DestinationPorts = list(
list(
FromPort = 123,
ToPort = 123
)
),
Protocols = list(
123
)
)
),
CertificateAuthorityArn = "string",
CheckCertificateRevocationStatus = list(
RevokedStatusAction = "PASS"|"DROP"|"REJECT",
UnknownStatusAction = "PASS"|"DROP"|"REJECT"
)
)
)
),
TLSInspectionConfigurationResponse = list(
TLSInspectionConfigurationArn = "string",
TLSInspectionConfigurationName = "string",
TLSInspectionConfigurationId = "string",
TLSInspectionConfigurationStatus = "ACTIVE"|"DELETING"|"ERROR",
Description = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
NumberOfAssociations = 123,
EncryptionConfiguration = list(
KeyId = "string",
Type = "CUSTOMER_KMS"|"AWS_OWNED_KMS_KEY"
),
Certificates = list(
list(
CertificateArn = "string",
CertificateSerial = "string",
Status = "string",
StatusMessage = "string"
)
),
CertificateAuthority = list(
CertificateArn = "string",
CertificateSerial = "string",
Status = "string",
StatusMessage = "string"
)
)
)