Class CfnInputSecurityGroup
The AWS::MediaLive::InputSecurityGroup is a MediaLive resource type that creates an input security group.
Inherited Members
Namespace: Amazon.CDK.AWS.MediaLive
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnInputSecurityGroup : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnInputSecurityGroup
Inherits CfnResource
Implements IInspectable, ITaggable
Remarks
A MediaLive input security group is associated with a MediaLive input. The input security group is an "allow list" of IP addresses that controls whether an external IP address can push content to the associated MediaLive input.
CloudformationResource: AWS::MediaLive::InputSecurityGroup
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.MediaLive;
var tags;
var cfnInputSecurityGroup = new CfnInputSecurityGroup(this, "MyCfnInputSecurityGroup", new CfnInputSecurityGroupProps {
Tags = tags,
WhitelistRules = new [] { new InputWhitelistRuleCidrProperty {
Cidr = "cidr"
} }
});
Synopsis
Constructors
CfnInputSecurityGroup(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnInputSecurityGroup(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
CfnInputSecurityGroup(Construct, String, ICfnInputSecurityGroupProps) |
Properties
AttrArn | The ARN of the MediaLive input security group. |
AttrId | The Id of the Input Security Group. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
Tags | Tag Manager which manages the tags for this resource. |
TagsRaw | A collection of tags for this input security group. |
WhitelistRules | The list of IPv4 CIDR addresses to include in the input security group as "allowed" addresses. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnInputSecurityGroup(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnInputSecurityGroup(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnInputSecurityGroup(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnInputSecurityGroup(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
CfnInputSecurityGroup(Construct, String, ICfnInputSecurityGroupProps)
public CfnInputSecurityGroup(Construct scope, string id, ICfnInputSecurityGroupProps props = null)
Parameters
- scope Constructs.Construct
Scope in which this resource is defined.
- id System.String
Construct identifier for this resource (unique in its scope).
- props ICfnInputSecurityGroupProps
Resource properties.
Properties
AttrArn
The ARN of the MediaLive input security group.
public virtual string AttrArn { get; }
Property Value
System.String
Remarks
For example: arn:aws:medialive:us-west-1:111122223333:medialive:inputSecurityGroup:1234567
CloudformationAttribute: Arn
AttrId
The Id of the Input Security Group.
public virtual string AttrId { get; }
Property Value
System.String
Remarks
CloudformationAttribute: Id
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
Tags
Tag Manager which manages the tags for this resource.
public virtual TagManager Tags { get; }
Property Value
TagsRaw
A collection of tags for this input security group.
public virtual object TagsRaw { get; set; }
Property Value
System.Object
WhitelistRules
The list of IPv4 CIDR addresses to include in the input security group as "allowed" addresses.
public virtual object WhitelistRules { get; set; }
Property Value
System.Object
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>