Show / Hide Table of Contents

Class CfnCollaboration.PaymentConfigurationProperty

An object representing the collaboration member's payment responsibilities set by the collaboration creator.

Inheritance
object
CfnCollaboration.PaymentConfigurationProperty
Implements
CfnCollaboration.IPaymentConfigurationProperty
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 CfnCollaboration.PaymentConfigurationProperty : CfnCollaboration.IPaymentConfigurationProperty
Syntax (vb)
Public Class CfnCollaboration.PaymentConfigurationProperty Implements CfnCollaboration.IPaymentConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-paymentconfiguration.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 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

object

Remarks

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

MachineLearning

An object representing the collaboration member's machine learning payment responsibilities set by the collaboration creator.

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

object

Remarks

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

QueryCompute

The collaboration member's payment responsibilities set by the collaboration creator 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-collaboration-paymentconfiguration.html#cfn-cleanrooms-collaboration-paymentconfiguration-querycompute

Implements

CfnCollaboration.IPaymentConfigurationProperty
Back to top Generated by DocFX