Show / Hide Table of Contents

Interface ICfnDataAccessorMixinProps

Properties for CfnDataAccessorPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QBusiness
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnDataAccessorMixinProps
Syntax (vb)
Public Interface ICfnDataAccessorMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.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.CfnPropertyMixins.AWS.QBusiness;

             AttributeFilterProperty attributeFilterProperty_;

             var cfnDataAccessorMixinProps = new CfnDataAccessorMixinProps {
                 ActionConfigurations = new [] { new ActionConfigurationProperty {
                     Action = "action",
                     FilterConfiguration = new ActionFilterConfigurationProperty {
                         DocumentAttributeFilter = new AttributeFilterProperty {
                             AndAllFilters = new [] { attributeFilterProperty_ },
                             ContainsAll = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             ContainsAny = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             EqualsTo = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             GreaterThan = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             GreaterThanOrEquals = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             LessThan = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             LessThanOrEquals = new DocumentAttributeProperty {
                                 Name = "name",
                                 Value = new DocumentAttributeValueProperty {
                                     DateValue = "dateValue",
                                     LongValue = 123,
                                     StringListValue = new [] { "stringListValue" },
                                     StringValue = "stringValue"
                                 }
                             },
                             NotFilter = attributeFilterProperty_,
                             OrAllFilters = new [] { attributeFilterProperty_ }
                         }
                     }
                 } },
                 ApplicationId = "applicationId",
                 AuthenticationDetail = new DataAccessorAuthenticationDetailProperty {
                     AuthenticationConfiguration = new DataAccessorAuthenticationConfigurationProperty {
                         IdcTrustedTokenIssuerConfiguration = new DataAccessorIdcTrustedTokenIssuerConfigurationProperty {
                             IdcTrustedTokenIssuerArn = "idcTrustedTokenIssuerArn"
                         }
                     },
                     AuthenticationType = "authenticationType",
                     ExternalIds = new [] { "externalIds" }
                 },
                 DisplayName = "displayName",
                 Principal = "principal",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

ActionConfigurations

A list of action configurations specifying the allowed actions and any associated filters.

ApplicationId

The unique identifier of the Amazon Q Business application.

AuthenticationDetail

The authentication configuration details for the data accessor.

DisplayName

The friendly name of the data accessor.

Principal

The Amazon Resource Name (ARN) of the IAM role for the ISV associated with this data accessor.

Tags

The tags to associate with the data accessor.

Properties

ActionConfigurations

A list of action configurations specifying the allowed actions and any associated filters.

object? ActionConfigurations { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-actionconfigurations

Type union: either IResolvable or (either IResolvable or CfnDataAccessorPropsMixin.IActionConfigurationProperty)[]

ApplicationId

The unique identifier of the Amazon Q Business application.

string? ApplicationId { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-applicationid

AuthenticationDetail

The authentication configuration details for the data accessor.

object? AuthenticationDetail { get; }
Property Value

object

Remarks

This specifies how the ISV authenticates when accessing data through this data accessor.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-authenticationdetail

Type union: either IResolvable or CfnDataAccessorPropsMixin.IDataAccessorAuthenticationDetailProperty

DisplayName

The friendly name of the data accessor.

string? DisplayName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-displayname

Principal

The Amazon Resource Name (ARN) of the IAM role for the ISV associated with this data accessor.

string? Principal { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-principal

Tags

The tags to associate with the data accessor.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-dataaccessor.html#cfn-qbusiness-dataaccessor-tags

Back to top Generated by DocFX