Delete Tls Inspection Configuration
| networkfirewall_delete_tls_inspection_configuration | R Documentation |
Deletes the specified TLSInspectionConfiguration¶
Description¶
Deletes the specified TLSInspectionConfiguration.
Usage¶
networkfirewall_delete_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(
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"
)
)
)