Interface CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMembershipPropsMixin
@Stability(Stable)
public static interface CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.*;
ProtectedQueryS3OutputConfigurationProperty protectedQueryS3OutputConfigurationProperty = ProtectedQueryS3OutputConfigurationProperty.builder()
.bucket("bucket")
.keyPrefix("keyPrefix")
.resultFormat("resultFormat")
.singleFileOutput(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe S3 bucket to unload the protected query results.default StringThe S3 prefix to unload the protected query results.default StringIntended file format of the result.default ObjectIndicates whether files should be output as a single file (TRUE) or output as multiple files (FALSE).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The S3 bucket to unload the protected query results.- See Also:
-
getKeyPrefix
The S3 prefix to unload the protected query results.- See Also:
-
getResultFormat
Intended file format of the result.- See Also:
-
getSingleFileOutput
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.
Returns union: either
BooleanorIResolvable- See Also:
-
builder
@Stability(Stable) static CfnMembershipPropsMixin.ProtectedQueryS3OutputConfigurationProperty.Builder builder()
-