interface RefreshScheduleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.RefreshScheduleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#RefreshScheduleReference |
Java | software.amazon.awscdk.interfaces.quicksight.RefreshScheduleReference |
Python | aws_cdk.interfaces.aws_quicksight.RefreshScheduleReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » RefreshScheduleReference |
A reference to a RefreshSchedule resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const refreshScheduleReference: interfaces_aws_quicksight.RefreshScheduleReference = {
awsAccountId: 'awsAccountId',
dataSetId: 'dataSetId',
refreshScheduleArn: 'refreshScheduleArn',
scheduleId: 'scheduleId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the RefreshSchedule resource. |
| data | string | The DataSetId of the RefreshSchedule resource. |
| refresh | string | The ARN of the RefreshSchedule resource. |
| schedule | string | The Schedule/ScheduleId of the RefreshSchedule resource. |
awsAccountId
Type:
string
The AwsAccountId of the RefreshSchedule resource.
dataSetId
Type:
string
The DataSetId of the RefreshSchedule resource.
refreshScheduleArn
Type:
string
The ARN of the RefreshSchedule resource.
scheduleId
Type:
string
The Schedule/ScheduleId of the RefreshSchedule resource.

.NET
Go
Java
Python
TypeScript