Class CfnMembership.MembershipMLPaymentConfigProperty
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMembership.MembershipMLPaymentConfigProperty : CfnMembership.IMembershipMLPaymentConfigProperty
Syntax (vb)
Public Class CfnMembership.MembershipMLPaymentConfigProperty Implements CfnMembership.IMembershipMLPaymentConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var membershipMLPaymentConfigProperty = new MembershipMLPaymentConfigProperty {
ModelInference = new MembershipModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new MembershipModelTrainingPaymentConfigProperty {
IsResponsible = false
}
};
Synopsis
Constructors
MembershipMLPaymentConfigProperty() | An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator. |
Properties
ModelInference | The payment responsibilities accepted by the member for model inference. |
ModelTraining | The payment responsibilities accepted by the member for model training. |
Constructors
MembershipMLPaymentConfigProperty()
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
public MembershipMLPaymentConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_cleanrooms;
var membershipMLPaymentConfigProperty = new MembershipMLPaymentConfigProperty {
ModelInference = new MembershipModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new MembershipModelTrainingPaymentConfigProperty {
IsResponsible = false
}
};
Properties
ModelInference
The payment responsibilities accepted by the member for model inference.
public object? ModelInference { get; set; }
Property Value
Remarks
ModelTraining
The payment responsibilities accepted by the member for model training.
public object? ModelTraining { get; set; }