Show / Hide Table of Contents

Interface CfnFunctionPropsMixin.IS3EventProperty

Namespace: Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnFunctionPropsMixin.IS3EventProperty
Syntax (vb)
Public Interface CfnFunctionPropsMixin.IS3EventProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-s3event.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.Mixins.Preview.AWS.SAM.Mixins;

             var s3EventProperty = new S3EventProperty {
                 Bucket = "bucket",
                 Events = "events",
                 Filter = new S3NotificationFilterProperty {
                     S3Key = new S3KeyFilterProperty {
                         Rules = new [] { new S3KeyFilterRuleProperty {
                             Name = "name",
                             Value = "value"
                         } }
                     }
                 }
             };

Synopsis

Properties

Bucket
Events
Filter

Properties

Bucket

string? Bucket { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-s3event.html#cfn-serverless-function-s3event-bucket

Events

string? Events { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-s3event.html#cfn-serverless-function-s3event-events

Filter

object? Filter { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-s3event.html#cfn-serverless-function-s3event-filter

Type union: either IResolvable or CfnFunctionPropsMixin.IS3NotificationFilterProperty

Back to top Generated by DocFX