interface MembershipProtectedJobResultConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnMembershipPropsMixin_MembershipProtectedJobResultConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnMembershipPropsMixin » MembershipProtectedJobResultConfigurationProperty |
Contains configurations for protected job results.
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 membershipProtectedJobResultConfigurationProperty: cleanrooms_mixins.CfnMembershipPropsMixin.MembershipProtectedJobResultConfigurationProperty = {
outputConfiguration: {
s3: {
bucket: 'bucket',
keyPrefix: 'keyPrefix',
},
},
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| output | IResolvable | Membership | The output configuration for a protected job result. |
| role | string | The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected job results to the result location, given by the member who can receive results. |
outputConfiguration?
Type:
IResolvable | Membership
(optional)
The output configuration for a protected job result.
roleArn?
Type:
string
(optional)
The unique ARN for an IAM role that is used by AWS Clean Rooms to write protected job results to the result location, given by the member who can receive results.

.NET
Go
Java
Python
TypeScript