Show / Hide Table of Contents

Interface CfnDistribution.IOriginGroupMembersProperty

A complex data type for the origins included in an origin group.

Namespace: Amazon.CDK.AWS.CloudFront
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDistribution.IOriginGroupMembersProperty
Syntax (vb)
Public Interface CfnDistribution.IOriginGroupMembersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroupmembers.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 originGroupMembersProperty = new OriginGroupMembersProperty {
                 Items = new [] { new OriginGroupMemberProperty {
                     OriginId = "originId"
                 } },
                 Quantity = 123
             };

Synopsis

Properties

Items

Items (origins) in an origin group.

Quantity

The number of origins in an origin group.

Properties

Items

Items (origins) in an origin group.

object Items { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroupmembers.html#cfn-cloudfront-distribution-origingroupmembers-items

Type union: either IResolvable or (either IResolvable or CfnDistribution.IOriginGroupMemberProperty)[]

Quantity

The number of origins in an origin group.

double Quantity { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origingroupmembers.html#cfn-cloudfront-distribution-origingroupmembers-quantity

Back to top Generated by DocFX