interface ProtectedJobS3OutputConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipPropsMixin_ProtectedJobS3OutputConfigurationInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipPropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const protectedJobS3OutputConfigurationInputProperty: cleanrooms_mixins.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty = {
bucket: 'bucket',
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
(optional)
The S3 bucket for job output.
keyPrefix?
Type:
string
(optional)
The S3 prefix to unload the protected job results.

.NET
Go
Java
Python
TypeScript