interface ProtectedQueryS3OutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipPropsMixin_ProtectedQueryS3OutputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipPropsMixin » ProtectedQueryS3OutputConfigurationProperty |
Contains the configuration to write the query results to S3.
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 protectedQueryS3OutputConfigurationProperty: cleanrooms_mixins.CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty = {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
resultFormat: 'resultFormat',
singleFileOutput: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The S3 bucket to unload the protected query results. |
| key | string | The S3 prefix to unload the protected query results. |
| result | string | Intended file format of the result. |
| single | boolean | IResolvable | Indicates whether files should be output as a single file ( TRUE ) or output as multiple files ( FALSE ). |
bucket?
Type:
string
(optional)
The S3 bucket to unload the protected query results.
keyPrefix?
Type:
string
(optional)
The S3 prefix to unload the protected query results.
resultFormat?
Type:
string
(optional)
Intended file format of the result.
singleFileOutput?
Type:
boolean | IResolvable
(optional)
Indicates whether files should be output as a single file ( TRUE ) or output as multiple files ( FALSE ).
This parameter is only supported for analyses with the Spark analytics engine.

.NET
Go
Java
Python
TypeScript