Show / Hide Table of Contents

Class ApiKeyReference

A reference to a ApiKey resource.

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

            var apiKeyReference = new ApiKeyReference {
                ApiKeyId = "apiKeyId"
            };

Synopsis

Constructors

ApiKeyReference()

A reference to a ApiKey resource.

Properties

ApiKeyId

The APIKeyId of the ApiKey resource.

Constructors

ApiKeyReference()

A reference to a ApiKey resource.

public ApiKeyReference()
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.APIGateway;

            var apiKeyReference = new ApiKeyReference {
                ApiKeyId = "apiKeyId"
            };

Properties

ApiKeyId

The APIKeyId of the ApiKey resource.

public string ApiKeyId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IApiKeyReference
Back to top Generated by DocFX