Show / Hide Table of Contents

Class EventHubArgs

Inheritance
System.Object
InputArgs
ResourceArgs
EventHubArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.EventHub
Assembly: Pulumi.Azure.dll
Syntax
public sealed class EventHubArgs : ResourceArgs

Constructors

View Source

EventHubArgs()

Declaration
public EventHubArgs()

Properties

View Source

CaptureDescription

A capture_description block as defined below.

Declaration
public Input<EventHubCaptureDescriptionArgs> CaptureDescription { get; set; }
Property Value
Type Description
Input<EventHubCaptureDescriptionArgs>
View Source

MessageRetention

Specifies the number of days to retain the events for this Event Hub. Needs to be between 1 and 7 days; or 1 day when using a Basic SKU for the parent EventHub Namespace.

Declaration
public Input<int> MessageRetention { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

Specifies the name of the EventHub Namespace resource. Changing this forces a new resource to be created.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamespaceName

Specifies the name of the EventHub Namespace. Changing this forces a new resource to be created.

Declaration
public Input<string> NamespaceName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PartitionCount

Specifies the current number of shards on the Event Hub. Changing this forces a new resource to be created.

Declaration
public Input<int> PartitionCount { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ResourceGroupName

The name of the resource group in which the EventHub's parent Namespace exists. Changing this forces a new resource to be created.

Declaration
public Input<string> ResourceGroupName { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.