Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-db-parameter-group-name-option
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed May 6, 2024
2 parents 25c8aad + a38707b commit c281111
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 c281111

Please sign in to comment.