Skip to content

Get Data Protection Settings

workspacesweb_get_data_protection_settings R Documentation

Gets the data protection settings

Description

Gets the data protection settings.

Usage

workspacesweb_get_data_protection_settings(dataProtectionSettingsArn)

Arguments

dataProtectionSettingsArn

[required] The ARN of the data protection settings.

Value

A list with the following syntax:

list(
  dataProtectionSettings = list(
    additionalEncryptionContext = list(
      "string"
    ),
    associatedPortalArns = list(
      "string"
    ),
    creationDate = as.POSIXct(
      "2015-01-01"
    ),
    customerManagedKey = "string",
    dataProtectionSettingsArn = "string",
    description = "string",
    displayName = "string",
    inlineRedactionConfiguration = list(
      globalConfidenceLevel = 123,
      globalEnforcedUrls = list(
        "string"
      ),
      globalExemptUrls = list(
        "string"
      ),
      inlineRedactionPatterns = list(
        list(
          builtInPatternId = "string",
          confidenceLevel = 123,
          customPattern = list(
            keywordRegex = "string",
            patternDescription = "string",
            patternName = "string",
            patternRegex = "string"
          ),
          enforcedUrls = list(
            "string"
          ),
          exemptUrls = list(
            "string"
          ),
          redactionPlaceHolder = list(
            redactionPlaceHolderText = "string",
            redactionPlaceHolderType = "CustomText"
          )
        )
      )
    )
  )
)

Request syntax

svc$get_data_protection_settings(
  dataProtectionSettingsArn = "string"
)