Skip to content

Commit

Permalink
docs(ses): fix typos (#30068)
Browse files Browse the repository at this point in the history
Fix typos in VdmAttributes docs.
* `Deliverablity ` -> `Deliverability`

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
mazyu36 committed May 6, 2024
1 parent 8e98078 commit a38707b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/aws-cdk-lib/aws-ses/lib/vdm-attributes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ import { CfnVdmAttributes } from './ses.generated';
import { IResource, Resource } from '../../core';

/**
* Virtual Deliverablity Manager (VDM) attributes
* Virtual Deliverability Manager (VDM) attributes
*/
export interface IVdmAttributes extends IResource {
/**
* The name of the resource behind the Virtual Deliverablity Manager attributes.
* The name of the resource behind the Virtual Deliverability Manager attributes.
*
* @attribute
*/
readonly vdmAttributesName: string;
}

/**
* Properties for the Virtual Deliverablity Manager (VDM) attributes
* Properties for the Virtual Deliverability Manager (VDM) attributes
*/
export interface VdmAttributesProps {
/**
Expand All @@ -34,11 +34,11 @@ export interface VdmAttributesProps {
}

/**
* Virtual Deliverablity Manager (VDM) attributes
* Virtual Deliverability Manager (VDM) attributes
*/
export class VdmAttributes extends Resource implements IVdmAttributes {
/**
* Use an existing Virtual Deliverablity Manager attributes resource
* Use an existing Virtual Deliverability Manager attributes resource
*/
public static fromVdmAttributesName(scope: Construct, id: string, vdmAttributesName: string): IVdmAttributes {
class Import extends Resource implements IVdmAttributes {
Expand All @@ -50,7 +50,7 @@ export class VdmAttributes extends Resource implements IVdmAttributes {
public readonly vdmAttributesName: string;

/**
* Resource ID for the Virtual Deliverablity Manager attributes
* Resource ID for the Virtual Deliverability Manager attributes
*
* @attribute
*/
Expand Down

0 comments on commit a38707b

Please sign in to comment.