Show / Hide Table of Contents

Class ApplicationReference

A reference to a Application resource.

Inheritance
object
ApplicationReference
Implements
IApplicationReference
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.EMRServerless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ApplicationReference : IApplicationReference
Syntax (vb)
Public Class ApplicationReference Implements IApplicationReference
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.EMRServerless;

            var applicationReference = new ApplicationReference {
                ApplicationArn = "applicationArn",
                ApplicationId = "applicationId"
            };

Synopsis

Constructors

ApplicationReference()

A reference to a Application resource.

Properties

ApplicationArn

The ARN of the Application resource.

ApplicationId

The ApplicationId of the Application resource.

Constructors

ApplicationReference()

A reference to a Application resource.

public ApplicationReference()
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.EMRServerless;

            var applicationReference = new ApplicationReference {
                ApplicationArn = "applicationArn",
                ApplicationId = "applicationId"
            };

Properties

ApplicationArn

The ARN of the Application resource.

public string ApplicationArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ApplicationId

The ApplicationId of the Application resource.

public string ApplicationId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IApplicationReference
Back to top Generated by DocFX