interface MulticastGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTWireless.MulticastGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotwireless#MulticastGroupReference |
Java | software.amazon.awscdk.interfaces.iotwireless.MulticastGroupReference |
Python | aws_cdk.interfaces.aws_iotwireless.MulticastGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotwireless » MulticastGroupReference |
A reference to a MulticastGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as interfaces_aws_iotwireless } from 'aws-cdk-lib/interfaces';
const multicastGroupReference: interfaces_aws_iotwireless.MulticastGroupReference = {
multicastGroupArn: 'multicastGroupArn',
multicastGroupId: 'multicastGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| multicast | string | The ARN of the MulticastGroup resource. |
| multicast | string | The Id of the MulticastGroup resource. |
multicastGroupArn
Type:
string
The ARN of the MulticastGroup resource.
multicastGroupId
Type:
string
The Id of the MulticastGroup resource.

.NET
Go
Java
Python
TypeScript