interface MembershipProtectedQueryOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnMembership_MembershipProtectedQueryOutputConfigurationProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty |
Python | aws_cdk.aws_cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnMembership » MembershipProtectedQueryOutputConfigurationProperty |
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 { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const membershipProtectedQueryOutputConfigurationProperty: cleanrooms.CfnMembership.MembershipProtectedQueryOutputConfigurationProperty = {
s3: {
bucket: 'bucket',
resultFormat: 'resultFormat',
// the properties below are optional
keyPrefix: 'keyPrefix',
singleFileOutput: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | Protected | Required configuration for a protected query with an s3 output type. |
s3
Type:
IResolvable | Protected
Required configuration for a protected query with an s3 output type.

.NET
Go
Java
Python
TypeScript