AWSConnectCreateSecurityProfileRequest
Objective-C
@interface AWSConnectCreateSecurityProfileRequest
Swift
class AWSConnectCreateSecurityProfileRequest
-
The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable allowedAccessControlHierarchyGroupId;
Swift
var allowedAccessControlHierarchyGroupId: String? { get set }
-
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable allowedAccessControlTags;
Swift
var allowedAccessControlTags: [String : String]? { get set }
-
A list of third-party applications that the security profile will give access to.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSConnectApplication *> *_Nullable applications;
Swift
var applications: [AWSConnectApplication]? { get set }
-
The description of the security profile.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. Following are acceptable ResourceNames:
User
.Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable hierarchyRestrictedResources;
Swift
var hierarchyRestrictedResources: [String]? { get set }
-
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable instanceId;
Swift
var instanceId: String? { get set }
-
Permissions assigned to the security profile. For a list of valid permissions, see List of security profile permissions.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable permissions;
Swift
var permissions: [String]? { get set }
-
The name of the security profile.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable securityProfileName;
Swift
var securityProfileName: String? { get set }
-
The list of resources that a security profile applies tag restrictions to in Amazon Connect. Following are acceptable ResourceNames:
User
|SecurityProfile
|Queue
|RoutingProfile
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSString *> *_Nullable tagRestrictedResources;
Swift
var tagRestrictedResources: [String]? { get set }
-
The tags used to organize, track, or control access for this resource. For example, { “Tags”: {“key1”:“value1”, “key2”:“value2”} }.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;
Swift
var tags: [String : String]? { get set }