interface ProtectedJobS3OutputConfigurationInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnMembershipPropsMixin_ProtectedJobS3OutputConfigurationInputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnMembershipPropsMixin.ProtectedJobS3OutputConfigurationInputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const protectedJobS3OutputConfigurationInputProperty: cleanrooms.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