interface BillingGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoT.BillingGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiot#BillingGroupReference |
Java | software.amazon.awscdk.interfaces.iot.BillingGroupReference |
Python | aws_cdk.interfaces.aws_iot.BillingGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_iot » BillingGroupReference |
A reference to a BillingGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as interfaces_aws_iot } from 'aws-cdk-lib/interfaces';
const billingGroupReference: interfaces_aws_iot.BillingGroupReference = {
billingGroupArn: 'billingGroupArn',
billingGroupName: 'billingGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| billing | string | The ARN of the BillingGroup resource. |
| billing | string | The BillingGroupName of the BillingGroup resource. |
billingGroupArn
Type:
string
The ARN of the BillingGroup resource.
billingGroupName
Type:
string
The BillingGroupName of the BillingGroup resource.

.NET
Go
Java
Python
TypeScript