Show / Hide Table of Contents

Class CfnConfigurationBundle.VersionLineageMetadataProperty

The version lineage metadata that tracks parent versions and creation source.

Inheritance
object
CfnConfigurationBundle.VersionLineageMetadataProperty
Implements
CfnConfigurationBundle.IVersionLineageMetadataProperty
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.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConfigurationBundle.VersionLineageMetadataProperty : CfnConfigurationBundle.IVersionLineageMetadataProperty
Syntax (vb)
Public Class CfnConfigurationBundle.VersionLineageMetadataProperty Implements CfnConfigurationBundle.IVersionLineageMetadataProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-configurationbundle-versionlineagemetadata.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.BedrockAgentCore;

             var versionLineageMetadataProperty = new VersionLineageMetadataProperty {
                 BranchName = "branchName",
                 CommitMessage = "commitMessage",
                 CreatedBy = new VersionCreatedBySourceProperty {
                     Name = "name",

                     // the properties below are optional
                     Arn = "arn"
                 },
                 ParentVersionIds = new [] { "parentVersionIds" }
             };

Synopsis

Constructors

VersionLineageMetadataProperty()

The version lineage metadata that tracks parent versions and creation source.

Properties

BranchName

The branch name for this version.

CommitMessage

A commit message describing the changes in this version.

CreatedBy

The source that created a configuration bundle version.

ParentVersionIds

A list of parent version identifiers.

Constructors

VersionLineageMetadataProperty()

The version lineage metadata that tracks parent versions and creation source.

public VersionLineageMetadataProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-configurationbundle-versionlineagemetadata.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.BedrockAgentCore;

             var versionLineageMetadataProperty = new VersionLineageMetadataProperty {
                 BranchName = "branchName",
                 CommitMessage = "commitMessage",
                 CreatedBy = new VersionCreatedBySourceProperty {
                     Name = "name",

                     // the properties below are optional
                     Arn = "arn"
                 },
                 ParentVersionIds = new [] { "parentVersionIds" }
             };

Properties

BranchName

The branch name for this version.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-configurationbundle-versionlineagemetadata.html#cfn-bedrockagentcore-configurationbundle-versionlineagemetadata-branchname

CommitMessage

A commit message describing the changes in this version.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-configurationbundle-versionlineagemetadata.html#cfn-bedrockagentcore-configurationbundle-versionlineagemetadata-commitmessage

CreatedBy

The source that created a configuration bundle version.

public object? CreatedBy { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-configurationbundle-versionlineagemetadata.html#cfn-bedrockagentcore-configurationbundle-versionlineagemetadata-createdby

Type union: either IResolvable or CfnConfigurationBundle.IVersionCreatedBySourceProperty

ParentVersionIds

A list of parent version identifiers.

public string[]? ParentVersionIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-configurationbundle-versionlineagemetadata.html#cfn-bedrockagentcore-configurationbundle-versionlineagemetadata-parentversionids

Implements

CfnConfigurationBundle.IVersionLineageMetadataProperty
Back to top Generated by DocFX