Class CfnMembership.MembershipPaymentConfigurationProperty
An object representing the payment responsibilities accepted by the collaboration member.
Inherited Members
Namespace: Amazon.CDK.AwsCleanrooms
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMembership.MembershipPaymentConfigurationProperty : CfnMembership.IMembershipPaymentConfigurationProperty
Syntax (vb)
Public Class CfnMembership.MembershipPaymentConfigurationProperty Implements CfnMembership.IMembershipPaymentConfigurationProperty
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 membershipPaymentConfigurationProperty = new MembershipPaymentConfigurationProperty {
QueryCompute = new MembershipQueryComputePaymentConfigProperty {
IsResponsible = false
},
// the properties below are optional
JobCompute = new MembershipJobComputePaymentConfigProperty {
IsResponsible = false
},
MachineLearning = new MembershipMLPaymentConfigProperty {
ModelInference = new MembershipModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new MembershipModelTrainingPaymentConfigProperty {
IsResponsible = false
}
}
};
Synopsis
Constructors
MembershipPaymentConfigurationProperty() | An object representing the payment responsibilities accepted by the collaboration member. |
Properties
JobCompute | The payment responsibilities accepted by the collaboration member for job compute costs. |
MachineLearning | The payment responsibilities accepted by the collaboration member for machine learning costs. |
QueryCompute | The payment responsibilities accepted by the collaboration member for query compute costs. |
Constructors
MembershipPaymentConfigurationProperty()
An object representing the payment responsibilities accepted by the collaboration member.
public MembershipPaymentConfigurationProperty()
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 membershipPaymentConfigurationProperty = new MembershipPaymentConfigurationProperty {
QueryCompute = new MembershipQueryComputePaymentConfigProperty {
IsResponsible = false
},
// the properties below are optional
JobCompute = new MembershipJobComputePaymentConfigProperty {
IsResponsible = false
},
MachineLearning = new MembershipMLPaymentConfigProperty {
ModelInference = new MembershipModelInferencePaymentConfigProperty {
IsResponsible = false
},
ModelTraining = new MembershipModelTrainingPaymentConfigProperty {
IsResponsible = false
}
}
};
Properties
JobCompute
The payment responsibilities accepted by the collaboration member for job compute costs.
public object? JobCompute { get; set; }
Property Value
Remarks
MachineLearning
The payment responsibilities accepted by the collaboration member for machine learning costs.
public object? MachineLearning { get; set; }
Property Value
Remarks
QueryCompute
The payment responsibilities accepted by the collaboration member for query compute costs.
public object QueryCompute { get; set; }