Show / Hide Table of Contents

Interface CfnSecurityProfile.IGranularAccessControlConfigurationProperty

Contains granular access control configuration for security profiles, including data table access permissions.

Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnSecurityProfile.IGranularAccessControlConfigurationProperty
Syntax (vb)
Public Interface CfnSecurityProfile.IGranularAccessControlConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-granularaccesscontrolconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Connect;

             var granularAccessControlConfigurationProperty = new GranularAccessControlConfigurationProperty {
                 DataTableAccessControlConfiguration = new DataTableAccessControlConfigurationProperty {
                     PrimaryAttributeAccessControlConfiguration = new PrimaryAttributeAccessControlConfigurationItemProperty {
                         PrimaryAttributeValues = new [] { new PrimaryAttributeValueProperty {
                             AccessType = "accessType",
                             AttributeName = "attributeName",
                             Values = new [] { "values" }
                         } }
                     }
                 }
             };

Synopsis

Properties

DataTableAccessControlConfiguration

The access control configuration for data tables.

Properties

DataTableAccessControlConfiguration

The access control configuration for data tables.

object? DataTableAccessControlConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-securityprofile-granularaccesscontrolconfiguration.html#cfn-connect-securityprofile-granularaccesscontrolconfiguration-datatableaccesscontrolconfiguration

Type union: either IResolvable or CfnSecurityProfile.IDataTableAccessControlConfigurationProperty

Back to top Generated by DocFX