Interface CfnMembership.IProtectedQueryS3OutputConfigurationProperty
Contains the configuration to write the query results to S3.
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMembership.IProtectedQueryS3OutputConfigurationProperty
Syntax (vb)
Public Interface CfnMembership.IProtectedQueryS3OutputConfigurationProperty
Remarks
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_cleanrooms;
var protectedQueryS3OutputConfigurationProperty = new ProtectedQueryS3OutputConfigurationProperty {
Bucket = "bucket",
ResultFormat = "resultFormat",
// the properties below are optional
KeyPrefix = "keyPrefix",
SingleFileOutput = false
};
Synopsis
Properties
Bucket | The S3 bucket to unload the protected query results. |
KeyPrefix | The S3 prefix to unload the protected query results. |
ResultFormat | Intended file format of the result. |
SingleFileOutput | Indicates whether files should be output as a single file ( |
Properties
Bucket
The S3 bucket to unload the protected query results.
string Bucket { get; }
Property Value
Remarks
KeyPrefix
The S3 prefix to unload the protected query results.
string? KeyPrefix { get; }
Property Value
Remarks
ResultFormat
Intended file format of the result.
string ResultFormat { get; }
Property Value
Remarks
SingleFileOutput
Indicates whether files should be output as a single file ( TRUE
) or output as multiple files ( FALSE
).
object? SingleFileOutput { get; }
Property Value
Remarks
This parameter is only supported for analyses with the Spark analytics engine.