Class CfnCollaboration.PaymentConfigurationProperty
An object representing the collaboration member's payment responsibilities set by the collaboration creator.
Implements
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCollaboration.PaymentConfigurationProperty : CfnCollaboration.IPaymentConfigurationProperty
Syntax (vb)
Public Class CfnCollaboration.PaymentConfigurationProperty Implements CfnCollaboration.IPaymentConfigurationProperty
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 paymentConfigurationProperty = new PaymentConfigurationProperty {
QueryCompute = new QueryComputePaymentConfigProperty {
IsResponsible = false
},
// the properties below are optional
JobCompute = new JobComputePaymentConfigProperty {
IsResponsible = false
},
MachineLearning = new MLPaymentConfigProperty {
ModelInference = new ModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new ModelTrainingPaymentConfigProperty {
IsResponsible = false
}
}
};
Synopsis
Constructors
PaymentConfigurationProperty() | An object representing the collaboration member's payment responsibilities set by the collaboration creator. |
Properties
JobCompute | The compute configuration for the job. |
MachineLearning | An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator. |
QueryCompute | The collaboration member's payment responsibilities set by the collaboration creator for query compute costs. |
Constructors
PaymentConfigurationProperty()
An object representing the collaboration member's payment responsibilities set by the collaboration creator.
public PaymentConfigurationProperty()
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 paymentConfigurationProperty = new PaymentConfigurationProperty {
QueryCompute = new QueryComputePaymentConfigProperty {
IsResponsible = false
},
// the properties below are optional
JobCompute = new JobComputePaymentConfigProperty {
IsResponsible = false
},
MachineLearning = new MLPaymentConfigProperty {
ModelInference = new ModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new ModelTrainingPaymentConfigProperty {
IsResponsible = false
}
}
};
Properties
JobCompute
The compute configuration for the job.
public object? JobCompute { get; set; }
Property Value
Remarks
MachineLearning
An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.
public object? MachineLearning { get; set; }
Property Value
Remarks
QueryCompute
The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.
public object QueryCompute { get; set; }