Class CfnTrustStoreProps
Properties for defining a CfnTrustStore.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTrustStoreProps : ICfnTrustStoreProps
Syntax (vb)
Public Class CfnTrustStoreProps Implements ICfnTrustStoreProps
Remarks
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.CloudFront;
var cfnTrustStoreProps = new CfnTrustStoreProps {
Name = "name",
// the properties below are optional
CaCertificatesBundleSource = new CaCertificatesBundleSourceProperty {
CaCertificatesBundleS3Location = new CaCertificatesBundleS3LocationProperty {
Bucket = "bucket",
Key = "key",
Region = "region",
// the properties below are optional
Version = "version"
}
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnTrustStoreProps() | Properties for defining a |
Properties
| CaCertificatesBundleSource | A CA certificates bundle source. |
| Name | The trust store's name. |
| Tags | A complex type that contains zero or more |
Constructors
CfnTrustStoreProps()
Properties for defining a CfnTrustStore.
public CfnTrustStoreProps()
Remarks
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.CloudFront;
var cfnTrustStoreProps = new CfnTrustStoreProps {
Name = "name",
// the properties below are optional
CaCertificatesBundleSource = new CaCertificatesBundleSourceProperty {
CaCertificatesBundleS3Location = new CaCertificatesBundleS3LocationProperty {
Bucket = "bucket",
Key = "key",
Region = "region",
// the properties below are optional
Version = "version"
}
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
CaCertificatesBundleSource
A CA certificates bundle source.
public object? CaCertificatesBundleSource { get; set; }
Property Value
Remarks
Name
The trust store's name.
public string Name { get; set; }
Property Value
Remarks
Tags
A complex type that contains zero or more Tag elements.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]