Class TrustStoreRevocation
A new Trust Store Revocation.
Inherited Members
Namespace: Amazon.CDK.AWS.ElasticLoadBalancingV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TrustStoreRevocation : Resource, IResource, IConstruct, IDependable
Syntax (vb)
Public Class TrustStoreRevocation Inherits Resource Implements IResource, IConstruct, IDependable
Remarks
ExampleMetadata: infused
Examples
TrustStore trustStore;
Bucket bucket;
new TrustStoreRevocation(this, "Revocation", new TrustStoreRevocationProps {
TrustStore = trustStore,
RevocationContents = new [] { new RevocationContent {
RevocationType = RevocationType.CRL,
Bucket = bucket,
Key = "crl.pem"
} }
});
Synopsis
Constructors
TrustStoreRevocation(Construct, string, ITrustStoreRevocationProps) | A new Trust Store Revocation. |
Properties
PROPERTY_INJECTION_ID | Uniquely identifies this class. |
Constructors
TrustStoreRevocation(Construct, string, ITrustStoreRevocationProps)
A new Trust Store Revocation.
public TrustStoreRevocation(Construct scope, string id, ITrustStoreRevocationProps props)
Parameters
- scope Construct
- id string
- props ITrustStoreRevocationProps
Remarks
ExampleMetadata: infused
Examples
TrustStore trustStore;
Bucket bucket;
new TrustStoreRevocation(this, "Revocation", new TrustStoreRevocationProps {
TrustStore = trustStore,
RevocationContents = new [] { new RevocationContent {
RevocationType = RevocationType.CRL,
Bucket = bucket,
Key = "crl.pem"
} }
});
Properties
PROPERTY_INJECTION_ID
Uniquely identifies this class.
public static string PROPERTY_INJECTION_ID { get; }
Property Value
Remarks
ExampleMetadata: infused
Implements
Constructs.IConstruct
Constructs.IDependable