Skip to content

Commit

Permalink
chore(certificatemanager): clear docs linter exclusions
Browse files Browse the repository at this point in the history
### Commit Message
chore(certificatemanager): clear docs linter exclusions (#8045)

### End Commit Message

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
shivlaks committed May 18, 2020
1 parent 52a6ccc commit 6a6298f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/@aws-cdk/aws-certificatemanager/lib/certificate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import { Construct, IResource, Resource, Token } from '@aws-cdk/core';
import { CfnCertificate } from './certificatemanager.generated';
import { apexDomain } from './util';

/**
* Represents a certificate in AWS Certificate Manager
*/
export interface ICertificate extends IResource {
/**
* The certificate's ARN
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import * as path from 'path';
import { CertificateProps, ICertificate } from './certificate';

/**
* Properties to create a DNS validated certificate managed by AWS Certificate Manager
*
* @experimental
*/
export interface DnsValidatedCertificateProps extends CertificateProps {
Expand Down
4 changes: 1 addition & 3 deletions packages/@aws-cdk/aws-certificatemanager/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@
"awslint": {
"exclude": [
"props-physical-name:@aws-cdk/aws-certificatemanager.CertificateProps",
"props-physical-name:@aws-cdk/aws-certificatemanager.DnsValidatedCertificateProps",
"docs-public-apis:@aws-cdk/aws-certificatemanager.DnsValidatedCertificateProps",
"docs-public-apis:@aws-cdk/aws-certificatemanager.ICertificate"
"props-physical-name:@aws-cdk/aws-certificatemanager.DnsValidatedCertificateProps"
]
},
"stability": "stable",
Expand Down

0 comments on commit 6a6298f

Please sign in to comment.