GetSecretRotationRotationRule.fromMap constructor
Implementation
factory GetSecretRotationRotationRule.fromMap(Map<String, dynamic> map) {
return GetSecretRotationRotationRule(
automaticallyAfterDays: pulumi.Input.fromValue((map['automaticallyAfterDays'] as num).toInt()),
duration: pulumi.Input.fromValue(map['duration'] as String),
scheduleExpression: pulumi.Input.fromValue(map['scheduleExpression'] as String),
);
}