Show / Hide Table of Contents

Class CfnApplicationV2.MavenReferenceProperty

The information required to specify a Maven reference.

Inheritance
object
CfnApplicationV2.MavenReferenceProperty
Implements
CfnApplicationV2.IMavenReferenceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.KinesisAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationV2.MavenReferenceProperty : CfnApplicationV2.IMavenReferenceProperty
Syntax (vb)
Public Class CfnApplicationV2.MavenReferenceProperty Implements CfnApplicationV2.IMavenReferenceProperty
Remarks

You can use Maven references to specify dependency JAR files.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-mavenreference.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.KinesisAnalytics;

             var mavenReferenceProperty = new MavenReferenceProperty {
                 ArtifactId = "artifactId",
                 GroupId = "groupId",
                 Version = "version"
             };

Synopsis

Constructors

MavenReferenceProperty()

The information required to specify a Maven reference.

Properties

ArtifactId

The artifact ID of the Maven reference.

GroupId

The group ID of the Maven reference.

Version

The version of the Maven reference.

Constructors

MavenReferenceProperty()

The information required to specify a Maven reference.

public MavenReferenceProperty()
Remarks

You can use Maven references to specify dependency JAR files.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-mavenreference.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.KinesisAnalytics;

             var mavenReferenceProperty = new MavenReferenceProperty {
                 ArtifactId = "artifactId",
                 GroupId = "groupId",
                 Version = "version"
             };

Properties

ArtifactId

The artifact ID of the Maven reference.

public string ArtifactId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-mavenreference.html#cfn-kinesisanalyticsv2-application-mavenreference-artifactid

GroupId

The group ID of the Maven reference.

public string GroupId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-mavenreference.html#cfn-kinesisanalyticsv2-application-mavenreference-groupid

Version

The version of the Maven reference.

public string Version { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-mavenreference.html#cfn-kinesisanalyticsv2-application-mavenreference-version

Implements

CfnApplicationV2.IMavenReferenceProperty
Back to top Generated by DocFX