Skip to content

Describe Security Profile

connect_describe_security_profile R Documentation

Gets basic information about the security profile

Description

Gets basic information about the security profile.

For information about security profiles, see Security Profiles in the Amazon Connect Administrator Guide. For a mapping of the API name and user interface name of the security profile permissions, see List of security profile permissions.

Usage

connect_describe_security_profile(SecurityProfileId, InstanceId)

Arguments

SecurityProfileId

[required] The identifier for the security profle.

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

Value

A list with the following syntax:

list(
  SecurityProfile = list(
    Id = "string",
    OrganizationResourceId = "string",
    Arn = "string",
    SecurityProfileName = "string",
    Description = "string",
    Tags = list(
      "string"
    ),
    AllowedAccessControlTags = list(
      "string"
    ),
    TagRestrictedResources = list(
      "string"
    ),
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedRegion = "string",
    HierarchyRestrictedResources = list(
      "string"
    ),
    AllowedAccessControlHierarchyGroupId = "string"
  )
)

Request syntax

svc$describe_security_profile(
  SecurityProfileId = "string",
  InstanceId = "string"
)