interface InputSecurityGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaLive.InputSecurityGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmedialive#InputSecurityGroupReference |
Java | software.amazon.awscdk.interfaces.medialive.InputSecurityGroupReference |
Python | aws_cdk.interfaces.aws_medialive.InputSecurityGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_medialive » InputSecurityGroupReference |
A reference to a InputSecurityGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as interfaces_aws_medialive } from 'aws-cdk-lib/interfaces';
const inputSecurityGroupReference: interfaces_aws_medialive.InputSecurityGroupReference = {
inputSecurityGroupArn: 'inputSecurityGroupArn',
inputSecurityGroupId: 'inputSecurityGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The ARN of the InputSecurityGroup resource. |
| input | string | The Id of the InputSecurityGroup resource. |
inputSecurityGroupArn
Type:
string
The ARN of the InputSecurityGroup resource.
inputSecurityGroupId
Type:
string
The Id of the InputSecurityGroup resource.

.NET
Go
Java
Python
TypeScript