Show / Hide Table of Contents

Class S3LocationConfig

Stores information about the location of an object in Amazon S3.

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

            var s3LocationConfig = new S3LocationConfig {
                Uri = "uri"
            };

Synopsis

Constructors

S3LocationConfig()

Stores information about the location of an object in Amazon S3.

Properties

Uri

Uniquely identifies the resource in Amazon S3.

Constructors

S3LocationConfig()

Stores information about the location of an object in Amazon S3.

public S3LocationConfig()
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.StepFunctions.Tasks;

            var s3LocationConfig = new S3LocationConfig {
                Uri = "uri"
            };

Properties

Uri

Uniquely identifies the resource in Amazon S3.

public string Uri { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IS3LocationConfig
Back to top Generated by DocFX