import { WordPress } from 'cdk-wordpress'
new WordPress(scope: Construct, id: string, props?: WordPressProps)
Name | Type | Description |
---|---|---|
scope |
@aws-cdk/core.Construct |
No description. |
id |
string |
No description. |
props |
WordPressProps |
No description. |
- Type: @aws-cdk/core.Construct
- Type: string
- Type: WordPressProps
Name | Description |
---|---|
toString |
Returns a string representation of this construct. |
public toString(): string
Returns a string representation of this construct.
Name | Description |
---|---|
isConstruct |
Return whether the given object is a Construct. |
import { WordPress } from 'cdk-wordpress'
WordPress.isConstruct(x: any)
Return whether the given object is a Construct.
- Type: any
Name | Type | Description |
---|---|---|
node |
@aws-cdk/core.ConstructNode |
The construct tree node associated with this construct. |
endpoint |
string |
No description. |
public readonly node: ConstructNode;
- Type: @aws-cdk/core.ConstructNode
The construct tree node associated with this construct.
public readonly endpoint: string;
- Type: string
The interface for all wordpress.
import { WordPressProps } from 'cdk-wordpress'
const wordPressProps: WordPressProps = { ... }
Name | Type | Description |
---|---|---|
cluster |
@aws-cdk/aws-ecs.Cluster |
The WordPress cluster. |
rdsInstance |
@aws-cdk/aws-rds.DatabaseInstance |
The WordPress RDS. |
vpc |
@aws-cdk/aws-ec2.IVpc |
The WordPress VPC. |
public readonly cluster: Cluster;
- Type: @aws-cdk/aws-ecs.Cluster
The WordPress cluster.
public readonly rdsInstance: DatabaseInstance;
- Type: @aws-cdk/aws-rds.DatabaseInstance
The WordPress RDS.
public readonly vpc: IVpc;
- Type: @aws-cdk/aws-ec2.IVpc
The WordPress VPC.