Class CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty
The API schema configuration for the gateway target.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty : CfnGatewayTargetPropsMixin.IApiSchemaConfigurationProperty
Syntax (vb)
Public Class CfnGatewayTargetPropsMixin.ApiSchemaConfigurationProperty Implements CfnGatewayTargetPropsMixin.IApiSchemaConfigurationProperty
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.Mixins.Preview.AWS.BedrockAgentCore.Mixins;
var apiSchemaConfigurationProperty = new ApiSchemaConfigurationProperty {
InlinePayload = "inlinePayload",
S3 = new S3ConfigurationProperty {
BucketOwnerAccountId = "bucketOwnerAccountId",
Uri = "uri"
}
};
Synopsis
Constructors
| ApiSchemaConfigurationProperty() | The API schema configuration for the gateway target. |
Properties
| InlinePayload | The inline payload for the gateway. |
| S3 | The API schema configuration. |
Constructors
ApiSchemaConfigurationProperty()
The API schema configuration for the gateway target.
public ApiSchemaConfigurationProperty()
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.Mixins.Preview.AWS.BedrockAgentCore.Mixins;
var apiSchemaConfigurationProperty = new ApiSchemaConfigurationProperty {
InlinePayload = "inlinePayload",
S3 = new S3ConfigurationProperty {
BucketOwnerAccountId = "bucketOwnerAccountId",
Uri = "uri"
}
};
Properties
InlinePayload
The inline payload for the gateway.
public string? InlinePayload { get; set; }
Property Value
Remarks
S3
The API schema configuration.
public object? S3 { get; set; }