Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ses): fix typos #30068

Merged
merged 2 commits into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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