interface ProtectedJobS3OutputConfigurationInputProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnMembership_ProtectedJobS3OutputConfigurationInputProperty | 
|  Java | software.amazon.awscdk.services.cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty | 
|  Python | aws_cdk.aws_cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty | 
|  TypeScript | aws-cdk-lib»aws_cleanrooms»CfnMembership»ProtectedJobS3OutputConfigurationInputProperty | 
Contains input information for protected jobs with an S3 output type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const protectedJobS3OutputConfigurationInputProperty: cleanrooms.CfnMembership.ProtectedJobS3OutputConfigurationInputProperty = {
  bucket: 'bucket',
  // the properties below are optional
  keyPrefix: 'keyPrefix',
};
Properties
| Name | Type | Description | 
|---|---|---|
| bucket | string | The S3 bucket for job output. | 
| key | string | The S3 prefix to unload the protected job results. | 
bucket
Type:
string
The S3 bucket for job output.
keyPrefix?
Type:
string
(optional)
The S3 prefix to unload the protected job results.
