Show / Hide Table of Contents

Class CfnFpgaImage.StorageLocationProperty

Describes a storage location in Amazon S3.

Inheritance
object
CfnFpgaImage.StorageLocationProperty
Implements
CfnFpgaImage.IStorageLocationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFpgaImage.StorageLocationProperty : CfnFpgaImage.IStorageLocationProperty
Syntax (vb)
Public Class CfnFpgaImage.StorageLocationProperty Implements CfnFpgaImage.IStorageLocationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-fpgaimage-storagelocation.html

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.EC2;

             var storageLocationProperty = new StorageLocationProperty {
                 Bucket = "bucket",
                 Key = "key"
             };

Synopsis

Constructors

StorageLocationProperty()

Describes a storage location in Amazon S3.

Properties

Bucket

The name of the S3 bucket.

Key

The key.

Constructors

StorageLocationProperty()

Describes a storage location in Amazon S3.

public StorageLocationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-fpgaimage-storagelocation.html

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.EC2;

             var storageLocationProperty = new StorageLocationProperty {
                 Bucket = "bucket",
                 Key = "key"
             };

Properties

Bucket

The name of the S3 bucket.

public string? Bucket { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-fpgaimage-storagelocation.html#cfn-ec2-fpgaimage-storagelocation-bucket

Key

The key.

public string? Key { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-fpgaimage-storagelocation.html#cfn-ec2-fpgaimage-storagelocation-key

Implements

CfnFpgaImage.IStorageLocationProperty
Back to top Generated by DocFX