interface DestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.DestinationProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.DestinationProperty |
Python | aws_cdk.aws_sam.CfnFunction.DestinationProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » DestinationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
const destinationProperty: sam.CfnFunction.DestinationProperty = {
destination: 'destination',
// the properties below are optional
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | CfnFunction.DestinationProperty.Destination. |
| type? | string | CfnFunction.DestinationProperty.Type. |
destination
Type:
string
CfnFunction.DestinationProperty.Destination.
type?
Type:
string
(optional)
CfnFunction.DestinationProperty.Type.

.NET
Java
Python
TypeScript