interface RotationScheduleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SecretsManager.RotationScheduleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssecretsmanager#RotationScheduleReference |
Java | software.amazon.awscdk.interfaces.secretsmanager.RotationScheduleReference |
Python | aws_cdk.interfaces.aws_secretsmanager.RotationScheduleReference |
TypeScript | aws-cdk-lib » interfaces » aws_secretsmanager » RotationScheduleReference |
A reference to a RotationSchedule resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_secretsmanager as interfaces_secretsmanager } from 'aws-cdk-lib/interfaces';
const rotationScheduleReference: interfaces_secretsmanager.RotationScheduleReference = {
rotationScheduleId: 'rotationScheduleId',
};
Properties
| Name | Type | Description |
|---|---|---|
| rotation | string | The Id of the RotationSchedule resource. |
rotationScheduleId
Type:
string
The Id of the RotationSchedule resource.

.NET
Go
Java
Python
TypeScript