Skip to content

Commit c281111

Browse files
authored
Merge branch 'main' into feat/add-db-parameter-group-name-option
2 parents 25c8aad + a38707b commit c281111

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packages/aws-cdk-lib/aws-ses/lib/vdm-attributes.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ import { CfnVdmAttributes } from './ses.generated';
33
import { IResource, Resource } from '../../core';
44

55
/**
6-
* Virtual Deliverablity Manager (VDM) attributes
6+
* Virtual Deliverability Manager (VDM) attributes
77
*/
88
export interface IVdmAttributes extends IResource {
99
/**
10-
* The name of the resource behind the Virtual Deliverablity Manager attributes.
10+
* The name of the resource behind the Virtual Deliverability Manager attributes.
1111
*
1212
* @attribute
1313
*/
1414
readonly vdmAttributesName: string;
1515
}
1616

1717
/**
18-
* Properties for the Virtual Deliverablity Manager (VDM) attributes
18+
* Properties for the Virtual Deliverability Manager (VDM) attributes
1919
*/
2020
export interface VdmAttributesProps {
2121
/**
@@ -34,11 +34,11 @@ export interface VdmAttributesProps {
3434
}
3535

3636
/**
37-
* Virtual Deliverablity Manager (VDM) attributes
37+
* Virtual Deliverability Manager (VDM) attributes
3838
*/
3939
export class VdmAttributes extends Resource implements IVdmAttributes {
4040
/**
41-
* Use an existing Virtual Deliverablity Manager attributes resource
41+
* Use an existing Virtual Deliverability Manager attributes resource
4242
*/
4343
public static fromVdmAttributesName(scope: Construct, id: string, vdmAttributesName: string): IVdmAttributes {
4444
class Import extends Resource implements IVdmAttributes {
@@ -50,7 +50,7 @@ export class VdmAttributes extends Resource implements IVdmAttributes {
5050
public readonly vdmAttributesName: string;
5151

5252
/**
53-
* Resource ID for the Virtual Deliverablity Manager attributes
53+
* Resource ID for the Virtual Deliverability Manager attributes
5454
*
5555
* @attribute
5656
*/

0 commit comments

Comments
 (0)