Class CfnBlueprint
Details about a data automation blueprint.
Inherited Members
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBlueprint : CfnResource, IInspectable, IBlueprintRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Syntax (vb)
Public Class CfnBlueprint Inherits CfnResource Implements IInspectable, IBlueprintRef, IConstruct, IDependable, IEnvironmentAware, ITaggableV2
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
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 schema;
var cfnBlueprint = new CfnBlueprint(this, "MyCfnBlueprint", new CfnBlueprintProps {
BlueprintName = "blueprintName",
Schema = schema,
Type = "type",
// the properties below are optional
KmsEncryptionContext = new Dictionary<string, string> {
{ "kmsEncryptionContextKey", "kmsEncryptionContext" }
},
KmsKeyId = "kmsKeyId",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
| CfnBlueprint(Construct, string, ICfnBlueprintProps) | Create a new |
Properties
| AttrBlueprintArn | The blueprint's ARN. |
| AttrBlueprintStage | The blueprint's stage. |
| AttrCreationTime | When the blueprint was created. |
| AttrLastModifiedTime | When the blueprint was last updated. |
| BlueprintName | The blueprint's name. |
| BlueprintRef | A reference to a Blueprint resource. |
| CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
| CdkTagManager | Tag Manager which manages the tags for this resource. |
| CfnProperties | Details about a data automation blueprint. |
| KmsEncryptionContext | Name-value pairs to include as an encryption context. |
| KmsKeyId | The AWS key to use for encryption. |
| Schema | The blueprint's schema. |
| Tags | List of Tags. |
| Type | The blueprint's type. |
Methods
| ArnForBlueprint(IBlueprintRef) | Details about a data automation blueprint. |
| Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
| RenderProperties(IDictionary<string, object>) | Details about a data automation blueprint. |
Constructors
CfnBlueprint(Construct, string, ICfnBlueprintProps)
Create a new AWS::Bedrock::Blueprint.
public CfnBlueprint(Construct scope, string id, ICfnBlueprintProps props)
Parameters
- scope Construct
Scope in which this resource is defined.
- id string
Construct identifier for this resource (unique in its scope).
- props ICfnBlueprintProps
Resource properties.
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
Properties
AttrBlueprintArn
The blueprint's ARN.
public virtual string AttrBlueprintArn { get; }
Property Value
Remarks
CloudformationAttribute: BlueprintArn
AttrBlueprintStage
The blueprint's stage.
public virtual string AttrBlueprintStage { get; }
Property Value
Remarks
CloudformationAttribute: BlueprintStage
AttrCreationTime
When the blueprint was created.
public virtual string AttrCreationTime { get; }
Property Value
Remarks
CloudformationAttribute: CreationTime
AttrLastModifiedTime
When the blueprint was last updated.
public virtual string AttrLastModifiedTime { get; }
Property Value
Remarks
CloudformationAttribute: LastModifiedTime
BlueprintName
The blueprint's name.
public virtual string BlueprintName { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
BlueprintRef
A reference to a Blueprint resource.
public virtual IBlueprintReference BlueprintRef { get; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
CdkTagManager
Tag Manager which manages the tags for this resource.
public virtual TagManager CdkTagManager { get; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
CfnProperties
Details about a data automation blueprint.
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
Overrides
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
KmsEncryptionContext
Name-value pairs to include as an encryption context.
public virtual object? KmsEncryptionContext { get; set; }
Property Value
Remarks
Type union: either Dictionary<string, string> or IResolvable
KmsKeyId
The AWS key to use for encryption.
public virtual string? KmsKeyId { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
Schema
The blueprint's schema.
public virtual object Schema { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
Tags
List of Tags.
public virtual ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
Type
The blueprint's type.
public virtual string Type { get; set; }
Property Value
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
Methods
ArnForBlueprint(IBlueprintRef)
Details about a data automation blueprint.
public static string ArnForBlueprint(IBlueprintRef resource)
Parameters
- resource IBlueprintRef
Returns
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
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 schema;
var cfnBlueprint = new CfnBlueprint(this, "MyCfnBlueprint", new CfnBlueprintProps {
BlueprintName = "blueprintName",
Schema = schema,
Type = "type",
// the properties below are optional
KmsEncryptionContext = new Dictionary<string, string> {
{ "kmsEncryptionContextKey", "kmsEncryptionContext" }
},
KmsKeyId = "kmsKeyId",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated
RenderProperties(IDictionary<string, object>)
Details about a data automation blueprint.
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props IDictionary<string, object>
Returns
Overrides
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html
CloudformationResource: AWS::Bedrock::Blueprint
ExampleMetadata: fixture=_generated