Show / Hide Table of Contents

Class TrustStoreRevocation

A new Trust Store Revocation.

Inheritance
object
Resource
TrustStoreRevocation
Implements
IResource
IConstruct
IDependable
Inherited Members
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(string, IArnComponents)
Resource.GetResourceNameAttribute(string)
Resource.Env
Resource.PhysicalName
Resource.Stack
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

string

Remarks

ExampleMetadata: infused

Implements

IResource
Constructs.IConstruct
Constructs.IDependable
Back to top Generated by DocFX