Show / Hide Table of Contents

Interface IApiDefinitionS3Location

S3 location of the API definition file.

Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IApiDefinitionS3Location
Syntax (vb)
Public Interface IApiDefinitionS3Location
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.APIGateway;

var apiDefinitionS3Location = new ApiDefinitionS3Location {
    Bucket = "bucket",
    Key = "key",

    // the properties below are optional
    Version = "version"
};

Synopsis

Properties

Bucket

The S3 bucket.

Key

The S3 key.

Version

An optional version.

Properties

Bucket

The S3 bucket.

string Bucket { get; }
Property Value

System.String

Key

The S3 key.

string Key { get; }
Property Value

System.String

Version

An optional version.

virtual string Version { get; }
Property Value

System.String

Remarks

Default: - latest version

Back to top Generated by DocFX