agent-claw: automated task changes
This commit is contained in:
39
cdk/node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts
generated
vendored
Normal file
39
cdk/node_modules/aws-cdk-lib/aws-appmesh/lib/tls-certificate.d.ts
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { CfnVirtualNode } from './appmesh.generated';
|
||||
import type * as acm from '../../aws-certificatemanager';
|
||||
/**
|
||||
* A wrapper for the tls config returned by `TlsCertificate.bind`
|
||||
*/
|
||||
export interface TlsCertificateConfig {
|
||||
/**
|
||||
* The CFN shape for a TLS certificate
|
||||
*/
|
||||
readonly tlsCertificate: CfnVirtualNode.ListenerTlsCertificateProperty;
|
||||
}
|
||||
/**
|
||||
* Represents a TLS certificate
|
||||
*/
|
||||
export declare abstract class TlsCertificate {
|
||||
/**
|
||||
* Returns an File TLS Certificate
|
||||
*/
|
||||
static file(certificateChainPath: string, privateKeyPath: string): MutualTlsCertificate;
|
||||
/**
|
||||
* Returns an ACM TLS Certificate
|
||||
*/
|
||||
static acm(certificate: acm.ICertificate): TlsCertificate;
|
||||
/**
|
||||
* Returns an SDS TLS Certificate
|
||||
*/
|
||||
static sds(secretName: string): MutualTlsCertificate;
|
||||
/**
|
||||
* Returns TLS certificate based provider.
|
||||
*/
|
||||
abstract bind(_scope: Construct): TlsCertificateConfig;
|
||||
}
|
||||
/**
|
||||
* Represents a TLS certificate that is supported for mutual TLS authentication.
|
||||
*/
|
||||
export declare abstract class MutualTlsCertificate extends TlsCertificate {
|
||||
protected readonly differentiator = false;
|
||||
}
|
||||
Reference in New Issue
Block a user