Show / Hide Table of Contents

Class CfnAgent.S3IdentifierProperty

The identifier information for an Amazon S3 bucket.

Inheritance
object
CfnAgent.S3IdentifierProperty
Implements
CfnAgent.IS3IdentifierProperty
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.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAgent.S3IdentifierProperty : CfnAgent.IS3IdentifierProperty
Syntax (vb)
Public Class CfnAgent.S3IdentifierProperty Implements CfnAgent.IS3IdentifierProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-s3identifier.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.Bedrock;

             var s3IdentifierProperty = new S3IdentifierProperty {
                 S3BucketName = "s3BucketName",
                 S3ObjectKey = "s3ObjectKey"
             };

Synopsis

Constructors

S3IdentifierProperty()

The identifier information for an Amazon S3 bucket.

Properties

S3BucketName

The name of the S3 bucket.

S3ObjectKey

The S3 object key for the S3 resource.

Constructors

S3IdentifierProperty()

The identifier information for an Amazon S3 bucket.

public S3IdentifierProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-s3identifier.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.Bedrock;

             var s3IdentifierProperty = new S3IdentifierProperty {
                 S3BucketName = "s3BucketName",
                 S3ObjectKey = "s3ObjectKey"
             };

Properties

S3BucketName

The name of the S3 bucket.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-s3identifier.html#cfn-bedrock-agent-s3identifier-s3bucketname

S3ObjectKey

The S3 object key for the S3 resource.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-s3identifier.html#cfn-bedrock-agent-s3identifier-s3objectkey

Implements

CfnAgent.IS3IdentifierProperty
Back to top Generated by DocFX