Package services.cleanrooms
Interface CfnMembership.MembershipProtectedQueryResultConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMembership.MembershipProtectedQueryResultConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMembership
@Stability(Stable)
public static interface CfnMembership.MembershipProtectedQueryResultConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 services.cleanrooms.*;
MembershipProtectedQueryResultConfigurationProperty membershipProtectedQueryResultConfigurationProperty = MembershipProtectedQueryResultConfigurationProperty.builder()
.outputConfiguration(MembershipProtectedQueryOutputConfigurationProperty.builder()
.s3(ProtectedQueryS3OutputConfigurationProperty.builder()
.bucket("bucket")
.resultFormat("resultFormat")
// the properties below are optional
.keyPrefix("keyPrefix")
.build())
.build())
// the properties below are optional
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMembership.MembershipProtectedQueryResultConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOutputConfiguration
Configuration for protected query results.- See Also:
-
getRoleArn
The unique ARN for an IAM role that is used by to write protected query results to the result location, given by the member who can receive results.- See Also:
-
builder
@Stability(Stable) static CfnMembership.MembershipProtectedQueryResultConfigurationProperty.Builder builder()
-