Interface CfnMembership.ProtectedQueryS3OutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembership.ProtectedQueryS3OutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMembership
@Stability(Stable)
public static interface CfnMembership.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.services.cleanrooms.*;
ProtectedQueryS3OutputConfigurationProperty protectedQueryS3OutputConfigurationProperty = ProtectedQueryS3OutputConfigurationProperty.builder()
.bucket("bucket")
.resultFormat("resultFormat")
// the properties below are optional
.keyPrefix("keyPrefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMembership.ProtectedQueryS3OutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The S3 bucket to unload the protected query results.- See Also:
-
getResultFormat
Intended file format of the result.- See Also:
-
getKeyPrefix
The S3 prefix to unload the protected query results.- See Also:
-
builder
@Stability(Stable) static CfnMembership.ProtectedQueryS3OutputConfigurationProperty.Builder builder()
-