interface VersionCreatedBySourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnConfigurationBundle.VersionCreatedBySourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnConfigurationBundle_VersionCreatedBySourceProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnConfigurationBundle.VersionCreatedBySourceProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnConfigurationBundle.VersionCreatedBySourceProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnConfigurationBundle » VersionCreatedBySourceProperty |
The source that created a configuration bundle version.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const versionCreatedBySourceProperty: bedrockagentcore.CfnConfigurationBundle.VersionCreatedBySourceProperty = {
name: 'name',
// the properties below are optional
arn: 'arn',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the source (for example, user, optimization-job, or system). |
| arn? | string | The Amazon Resource Name (ARN) of the source, if applicable. |
name
Type:
string
The name of the source (for example, user, optimization-job, or system).
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the source, if applicable.

.NET
Go
Java
Python
TypeScript