Show / Hide Table of Contents

Class CfnFunction.FunctionMetadataProperty

Contains metadata about a CloudFront function.

Inheritance
object
CfnFunction.FunctionMetadataProperty
Implements
CfnFunction.IFunctionMetadataProperty
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 CfnFunction.FunctionMetadataProperty : CfnFunction.IFunctionMetadataProperty
Syntax (vb)
Public Class CfnFunction.FunctionMetadataProperty Implements CfnFunction.IFunctionMetadataProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionmetadata.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 functionMetadataProperty = new FunctionMetadataProperty {
                 FunctionArn = "functionArn"
             };

Synopsis

Constructors

FunctionMetadataProperty()

Contains metadata about a CloudFront function.

Properties

FunctionArn

The Amazon Resource Name (ARN) of the function.

Constructors

FunctionMetadataProperty()

Contains metadata about a CloudFront function.

public FunctionMetadataProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionmetadata.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 functionMetadataProperty = new FunctionMetadataProperty {
                 FunctionArn = "functionArn"
             };

Properties

FunctionArn

The Amazon Resource Name (ARN) of the function.

public string? FunctionArn { get; set; }
Property Value

string

Remarks

The ARN uniquely identifies the function.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-function-functionmetadata.html#cfn-cloudfront-function-functionmetadata-functionarn

Implements

CfnFunction.IFunctionMetadataProperty
Back to top Generated by DocFX