Show / Hide Table of Contents

Class ServiceReference

A reference to a Service resource.

Inheritance
object
ServiceReference
Implements
IServiceReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Interfaces.RefactorSpaces
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ServiceReference : IServiceReference
Syntax (vb)
Public Class ServiceReference Implements IServiceReference
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.Interfaces.RefactorSpaces;

            var serviceReference = new ServiceReference {
                ApplicationIdentifier = "applicationIdentifier",
                EnvironmentIdentifier = "environmentIdentifier",
                ServiceArn = "serviceArn",
                ServiceIdentifier = "serviceIdentifier"
            };

Synopsis

Constructors

ServiceReference()

A reference to a Service resource.

Properties

ApplicationIdentifier

The ApplicationIdentifier of the Service resource.

EnvironmentIdentifier

The EnvironmentIdentifier of the Service resource.

ServiceArn

The ARN of the Service resource.

ServiceIdentifier

The ServiceIdentifier of the Service resource.

Constructors

ServiceReference()

A reference to a Service resource.

public ServiceReference()
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.Interfaces.RefactorSpaces;

            var serviceReference = new ServiceReference {
                ApplicationIdentifier = "applicationIdentifier",
                EnvironmentIdentifier = "environmentIdentifier",
                ServiceArn = "serviceArn",
                ServiceIdentifier = "serviceIdentifier"
            };

Properties

ApplicationIdentifier

The ApplicationIdentifier of the Service resource.

public string ApplicationIdentifier { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

EnvironmentIdentifier

The EnvironmentIdentifier of the Service resource.

public string EnvironmentIdentifier { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ServiceArn

The ARN of the Service resource.

public string ServiceArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

ServiceIdentifier

The ServiceIdentifier of the Service resource.

public string ServiceIdentifier { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IServiceReference
Back to top Generated by DocFX