Show / Hide Table of Contents

Class AddApiKeyOptions

Options to the UsagePlan.addApiKey() method.

Inheritance
System.Object
AddApiKeyOptions
Implements
IAddApiKeyOptions
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AddApiKeyOptions : Object, IAddApiKeyOptions
Syntax (vb)
Public Class AddApiKeyOptions
    Inherits Object
    Implements IAddApiKeyOptions
Remarks

ExampleMetadata: infused

Examples
UsagePlan usageplan;
ApiKey apiKey;


usageplan.AddApiKey(apiKey, new AddApiKeyOptions {
    OverrideLogicalId = "..."
});

Synopsis

Constructors

AddApiKeyOptions()

Properties

OverrideLogicalId

Override the CloudFormation logical id of the AWS::ApiGateway::UsagePlanKey resource.

Constructors

AddApiKeyOptions()

public AddApiKeyOptions()

Properties

OverrideLogicalId

Override the CloudFormation logical id of the AWS::ApiGateway::UsagePlanKey resource.

public string OverrideLogicalId { get; set; }
Property Value

System.String

Remarks

Default: - autogenerated by the CDK

Implements

IAddApiKeyOptions
Back to top Generated by DocFX