interface MembershipProtectedQueryResultConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipPropsMixin.MembershipProtectedQueryResultConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipPropsMixin_MembershipProtectedQueryResultConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipPropsMixin.MembershipProtectedQueryResultConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipPropsMixin.MembershipProtectedQueryResultConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipPropsMixin » MembershipProtectedQueryResultConfigurationProperty |
Contains configurations for protected query results.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const membershipProtectedQueryResultConfigurationProperty: cleanrooms_mixins.CfnMembershipPropsMixin.MembershipProtectedQueryResultConfigurationProperty = {
outputConfiguration: {
s3: {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
resultFormat: 'resultFormat',
singleFileOutput: false,
},
},
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| output | IResolvable | Membership | Configuration for protected query results. |
| role | string | The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected query results to the result location, given by the member who can receive results. |
outputConfiguration?
Type:
IResolvable | Membership
(optional)
Configuration for protected query results.
roleArn?
Type:
string
(optional)
The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected query results to the result location, given by the member who can receive results.

.NET
Go
Java
Python
TypeScript