Show / Hide Table of Contents

Class CfnTrustStoreProps

Properties for defining a CfnTrustStore.

Inheritance
object
CfnTrustStoreProps
Implements
ICfnTrustStoreProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTrustStoreProps : ICfnTrustStoreProps
Syntax (vb)
Public Class CfnTrustStoreProps Implements ICfnTrustStoreProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.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.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 CfnTrustStore.

Properties

CaCertificatesBundleSource

A CA certificates bundle source.

Name

The trust store's name.

Tags

A complex type that contains zero or more Tag elements.

Constructors

CfnTrustStoreProps()

Properties for defining a CfnTrustStore.

public CfnTrustStoreProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.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.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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-cacertificatesbundlesource

Type union: either IResolvable or CfnTrustStore.ICaCertificatesBundleSourceProperty

Name

The trust store's name.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-name

Tags

A complex type that contains zero or more Tag elements.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#cfn-cloudfront-truststore-tags

Implements

ICfnTrustStoreProps
Back to top Generated by DocFX