Show / Hide Table of Contents

Class ApiDefinitionS3Location

S3 location of the API definition file.

Inheritance
System.Object
ApiDefinitionS3Location
Implements
IApiDefinitionS3Location
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ApiDefinitionS3Location : Object, IApiDefinitionS3Location
Syntax (vb)
Public Class ApiDefinitionS3Location
    Inherits Object
    Implements 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

Constructors

ApiDefinitionS3Location()

Properties

Bucket

The S3 bucket.

Key

The S3 key.

Version

An optional version.

Constructors

ApiDefinitionS3Location()

public ApiDefinitionS3Location()

Properties

Bucket

The S3 bucket.

public string Bucket { get; set; }
Property Value

System.String

Key

The S3 key.

public string Key { get; set; }
Property Value

System.String

Version

An optional version.

public string Version { get; set; }
Property Value

System.String

Remarks

Default: - latest version

Implements

IApiDefinitionS3Location
Back to top Generated by DocFX