Interface CfnCollaboration.IMLPaymentConfigProperty
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnCollaboration.IMLPaymentConfigProperty
Syntax (vb)
Public Interface CfnCollaboration.IMLPaymentConfigProperty
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 mLPaymentConfigProperty = new MLPaymentConfigProperty {
ModelInference = new ModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new ModelTrainingPaymentConfigProperty {
IsResponsible = false
}
};
Synopsis
Properties
ModelInference | The payment responsibilities accepted by the member for model inference. |
ModelTraining | The payment responsibilities accepted by the member for model training. |
Properties
ModelInference
The payment responsibilities accepted by the member for model inference.
object? ModelInference { get; }
Property Value
Remarks
ModelTraining
The payment responsibilities accepted by the member for model training.
object? ModelTraining { get; }