Show / Hide Table of Contents

Class CfnMembership.MembershipPaymentConfigurationProperty

An object representing the payment responsibilities accepted by the collaboration member.

Inheritance
object
CfnMembership.MembershipPaymentConfigurationProperty
Implements
CfnMembership.IMembershipPaymentConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-jobcompute

MachineLearning

The payment responsibilities accepted by the collaboration member for machine learning costs.

public object? MachineLearning { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-machinelearning

QueryCompute

The payment responsibilities accepted by the collaboration member for query compute costs.

public object QueryCompute { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-membership-membershippaymentconfiguration.html#cfn-cleanrooms-membership-membershippaymentconfiguration-querycompute

Implements

CfnMembership.IMembershipPaymentConfigurationProperty
Back to top Generated by DocFX