describeSnapshotSchedule
inline suspend fun StorageGatewayClient.describeSnapshotSchedule(crossinline block: DescribeSnapshotScheduleRequest.Builder.() -> Unit): DescribeSnapshotScheduleResponse
Describes the snapshot schedule for the specified gateway volume. The snapshot schedule information includes intervals at which snapshots are automatically initiated on the volume. This operation is only supported in the cached volume and stored volume types.
Samples
fun main() {
//sampleStart
// Describes the snapshot schedule for the specified gateway volume including intervals at which
// snapshots are automatically initiated.
val resp = storageGatewayClient.describeSnapshotSchedule {
volumeArn = "arn:aws:storagegateway:us-east-1:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB"
}
//sampleEnd
}