Skip to content

Latest commit

 

History

History
190 lines (113 loc) · 5.59 KB

API.md

File metadata and controls

190 lines (113 loc) · 5.59 KB

API Reference

Constructs

Sharepoint2S3Flow

Initializers

import { Sharepoint2S3Flow } from 'appflow-patterns'

new Sharepoint2S3Flow(scope: Construct, id: string, props: Sharepoint2S3FlowProps)
Name Type Description
scope constructs.Construct No description.
id string No description.
props Sharepoint2S3FlowProps No description.

scopeRequired
  • Type: constructs.Construct

idRequired
  • Type: string

propsRequired

Methods

Name Description
toString Returns a string representation of this construct.

toString
public toString(): string

Returns a string representation of this construct.

Static Functions

Name Description
isConstruct Checks if x is a construct.

isConstruct
import { Sharepoint2S3Flow } from 'appflow-patterns'

Sharepoint2S3Flow.isConstruct(x: any)

Checks if x is a construct.

xRequired
  • Type: any

Any object.


Properties

Name Type Description
node constructs.Node The tree node.

nodeRequired
public readonly node: Node;
  • Type: constructs.Node

The tree node.


Structs

Sharepoint2S3FlowProps

Initializer

import { Sharepoint2S3FlowProps } from 'appflow-patterns'

const sharepoint2S3FlowProps: Sharepoint2S3FlowProps = { ... }

Properties

Name Type Description
bucketName string No description.
entities string[] No description.
profileArn string No description.
site string No description.
prefix string No description.
scheduleExpression string No description.

bucketNameRequired
public readonly bucketName: string;
  • Type: string

entitiesRequired
public readonly entities: string[];
  • Type: string[]

profileArnRequired
public readonly profileArn: string;
  • Type: string

siteRequired
public readonly site: string;
  • Type: string

prefixOptional
public readonly prefix: string;
  • Type: string

scheduleExpressionOptional
public readonly scheduleExpression: string;
  • Type: string