Class CfnCRL
A CloudFormation AWS::RolesAnywhere::CRL
.
Inherited Members
Namespace: Amazon.CDK.AWS.RolesAnywhere
Assembly: Amazon.CDK.AWS.RolesAnywhere.dll
Syntax (csharp)
public class CfnCRL : CfnResource, IConstruct, IDependable, IInspectable
Syntax (vb)
Public Class CfnCRL
Inherits CfnResource
Implements IConstruct, IDependable, IInspectable
Remarks
Creates a Crl.
CloudformationResource: AWS::RolesAnywhere::CRL
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-crl.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RolesAnywhere;
var cfnCRL = new CfnCRL(this, "MyCfnCRL", new CfnCRLProps {
CrlData = "crlData",
Name = "name",
// the properties below are optional
Enabled = false,
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} },
TrustAnchorArn = "trustAnchorArn"
});
Synopsis
Constructors
CfnCRL(Construct, String, ICfnCRLProps) | Create a new |
CfnCRL(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnCRL(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
Properties
AttrCrlId | The unique primary identifier of the Crl. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
CrlData | x509 v3 Certificate Revocation List to revoke auth for corresponding certificates presented in CreateSession operations. |
Enabled | The enabled status of the resource. |
Name | The customer specified name of the resource. |
Tags | A list of Tags. |
TrustAnchorArn | The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnCRL(Construct, String, ICfnCRLProps)
Create a new AWS::RolesAnywhere::CRL
.
public CfnCRL(Construct scope, string id, ICfnCRLProps props)
Parameters
- scope Construct
- scope in which this resource is defined.
- id System.String
- scoped id of the resource.
- props ICfnCRLProps
- resource properties.
CfnCRL(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnCRL(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnCRL(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnCRL(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
Properties
AttrCrlId
The unique primary identifier of the Crl.
public virtual string AttrCrlId { get; }
Property Value
System.String
Remarks
CloudformationAttribute: CrlId
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
CrlData
x509 v3 Certificate Revocation List to revoke auth for corresponding certificates presented in CreateSession operations.
public virtual string CrlData { get; set; }
Property Value
System.String
Remarks
Enabled
The enabled status of the resource.
public virtual object Enabled { get; set; }
Property Value
System.Object
Remarks
Name
The customer specified name of the resource.
public virtual string Name { get; set; }
Property Value
System.String
Remarks
Tags
A list of Tags.
public virtual TagManager Tags { get; }
Property Value
Remarks
TrustAnchorArn
The ARN of the TrustAnchor the certificate revocation list (CRL) will provide revocation for.
public virtual string TrustAnchorArn { get; set; }
Property Value
System.String
Remarks
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
- tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>